blob: e9542f42b54e37825f647516ab1e02e1f22cc102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
.src-archive {
text-align: left;
article {
margin-bottom: 3em;
}
h2 {
@include constrain_narrow;
@include fontsize(24);
@include generic_sans;
font-weight: 400;
margin-bottom: .25em;
a {
color: $body_font;
}
}
}
.src-topics {
@include smcaps;
@include fontsize(11);
}
.post--body pre {
margin: 1em auto !important;
}
code.language-bash:before {
content: "$ ";
}
code > .comment::after {
display:none;
}
|