mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-01 07:11:41 +00:00
31 lines
431 B
SCSS
31 lines
431 B
SCSS
|
div.article {
|
||
|
@include span-columns(12);
|
||
|
border-bottom: 1px solid rgba(35, 35, 35, 0.1);
|
||
|
padding-bottom: em(20);
|
||
|
|
||
|
h1 {
|
||
|
margin: 1em 0;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
@include span-columns(12);
|
||
|
margin-bottom: em(20);
|
||
|
}
|
||
|
|
||
|
.author {
|
||
|
@include span-columns(6);
|
||
|
}
|
||
|
|
||
|
.actions {
|
||
|
@include span-columns(6);
|
||
|
@include omega;
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
&:first-child {
|
||
|
|
||
|
h1 {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|