blob: 4d75b9b074ef00c1e8954f57f96950abec169245 (
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
30
31
32
33
|
.src-archive {
text-align: left;
article {
margin-bottom: 3em;
p {
color: lighten($body_font, 15);
font-size: 99%;
}
}
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;
}
|