blob: e11526fc7152800d277b29294a57ef00ac413593 (
plain) (
blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
@import "color_scheme";
body {
background-color: $body-bg;
color: $fg;
font: {
family: Helvetica, "Sans Seriff";
size: 10pt;
}
}
h1, h2, h3 {
color: $fg;
margin: {
top: 1em;
bottom: 0.5em;
}
&:first-of-type {
margin-top: 0;
}
}
h1 {
font-size: 14pt;
}
h2 {
font-size: 12pt;
}
h3 {
font-size: 10pt;
font-weight: 600;
}
a {
color: $link-fg;
&:hover {
color: $link-hover-fg;
}
&:visited {
color: $link-visited-fg;
&:hover {
color: $link-hover-fg;
}
}
}
#left_img {
float: left;
}
#right_img {
float: right;
}
|