-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (56 loc) · 1.12 KB
/
style.css
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
57
58
59
60
61
62
63
64
65
66
*::after, *::before {
box-sizing:border-box;
}
* {
box-sizing: border-box;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-kerning: auto;
}
html {
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
margin-top: 2%;
margin-left: 2%;
max-width: 800px;
}
code, pre, tt {
font-family: "Dejavu Sans Mono", "Consolas", "Courier New", monospace;
font-size: 100%;
}
pre.source-code {
margin-left: 2em;
}
p.aside {
background-color: #f0f7fb;
border-left: solid 4px #3498db;
line-height: 18px;
overflow: hidden;
padding: 12px;
}
div.syntax {
background-color: #f9fae8;
border-left: solid 4px #f4ff26;
line-height: 18px;
overflow: hidden;
padding-left: 12px;
font-size: 90%;
}
span.meta-syntax-identifier {
font-family: sans-serif;
font-weight: bold;
}
span.meta-syntax-descriptive {
font-family: serif;
font-style: italic;
color: #777777;
}
span.meta-syntax {
font-family: serif;
font-size: 130%;
color: #777777;
}