mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
38 lines
442 B
SCSS
38 lines
442 B
SCSS
|
/*
|
||
|
Global Helpers
|
||
|
*/
|
||
|
|
||
|
img.flag {
|
||
|
display: inline-block;
|
||
|
vertical-align: - em(6);
|
||
|
margin-right: em(10);
|
||
|
}
|
||
|
|
||
|
.actions-bottom {
|
||
|
@include span-columns(12);
|
||
|
margin-top: em(20);
|
||
|
}
|
||
|
|
||
|
fieldset {
|
||
|
border: em(2) solid $light-gray;
|
||
|
|
||
|
> br:first-child,
|
||
|
> br:last-child {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
legend {
|
||
|
padding: 0 em(10);
|
||
|
|
||
|
&+br {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
blockquote {
|
||
|
border: 0;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|