mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
775f5682a4
Improved articles styling Improved bbcode to html formatting HTML and CSS refactorings Moved Extra into concerns Changed repo URL to read-only for deploys Fixes quotes in comments
37 lines
442 B
SCSS
37 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;
|
|
}
|
|
}
|