mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
960e8b5a21
Added styling to private messages Updated puma config and deployment scripts
75 lines
985 B
SCSS
75 lines
985 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(40);
|
|
|
|
ul {
|
|
list-style-type: disc;
|
|
|
|
li {
|
|
margin-left: em(20);
|
|
}
|
|
}
|
|
}
|
|
|
|
.author {
|
|
@include span-columns(6);
|
|
|
|
a {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.comments {
|
|
@include span-columns(6);
|
|
@include omega;
|
|
text-align: right;
|
|
|
|
.fa {
|
|
margin-right: em(10);
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
@include span-columns(12);
|
|
@include omega;
|
|
margin-top: em(10);
|
|
}
|
|
|
|
&:first-child {
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
div.article-links {
|
|
@include span-columns(12);
|
|
|
|
.previous {
|
|
@include span-columns(6);
|
|
|
|
.fa {
|
|
padding-right: em(10);
|
|
}
|
|
}
|
|
|
|
.next {
|
|
@include span-columns(6);
|
|
@include omega;
|
|
text-align: right;
|
|
|
|
.fa {
|
|
padding-left: em(10);
|
|
}
|
|
}
|
|
}
|