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