-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css.pp
132 lines (108 loc) · 1.93 KB
/
style.css.pp
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#lang pollen
◊(define color-text "rgba(0,0,0,.85)")
◊(define color-book-title "rgba(0,0,0,.85)")
◊(define color-title "#ba3925")
h1, h2, h3, h4, h5, h6 {
font-family: sans-serif;
}
h1 {
color: ◊|color-book-title|;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
h2, h3, h4, h5, h6 {
color: ◊|color-title|;
}
h3.section-example {
color: inherit;
}
body {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
color: ◊|color-text|;
font-family: serif;
line-height: 1.6
}
p {
margin-bottom: 1.25em;
}
code {
background-color: #f7f7f8;
}
pre.code {
background-color: #f7f7f8;
line-height: 1.45;
padding: 10px;
}
.title-anchored-example {
font-weight: bold;
}
kbd {
font-family: monospace;
color: rgba(0,0,0,.8);
background: #f7f7f7;
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: 0 1px 0 rgba(0,0,0,.2),0 0 0 .1em #fff inset;
margin: 0 0.15em;
padding: 0.2em 0.5em;
white-space: nowrap;
}
ul.toc {
background-color: #f7f7f8;
line-height: 1.6;
padding: 1.25em;
list-style-type: none;
font-family: sans-serif;
}
.toc li {
list-style-type: none;
}
.toc li a:link {
list-style-type: none;
color: #2156a5;
text-decoration: none;
}
dt.def {
font-weight: bold;
}
.footnotes {
border-top: 2px lightgray dotted;
padding-top: 0.25em;
display: grid;
grid-gap: 0.2em;
grid-template-columns: 2.5em 1fr;
}
.quotation {
font-style: italic;
max-width: 65%;
}
.navbar {
font-family: sans-serif;
font-size: 0.9em;
display: grid;
grid-template-columns: 30% 40% 30%;
color: gray;
}
.separator-top {
border-bottom: 2px lightgray dotted;
padding-bottom: 0.4em;
}
.separator-bottom {
border-top: 2px lightgray dotted;
margin-top: 2em;
padding-top: 0.4em;
}
.navbar .left {
}
.navbar .center {
text-align: center;
}
.navbar .right {
text-align: right;
}
/* emacs: */
/* Local Variables: */
/* mode: css */
/* End: */