forked from entangled/bootstrap-submodule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mods.css
214 lines (175 loc) · 3.85 KB
/
mods.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
@import url('https://fonts.googleapis.com/css?family=Zilla+Slab:300,400,500&display=swap');
body {
font-family: 'Zilla Slab', serif;
font-size: 16pt;
font-weight: 300;
min-height: 100vh;
}
main {
background: #eee;
}
h1 {
margin: 1em 0 0.5em -1em;
padding-left: 0.5em;
border-bottom: thin solid black;
}
h2 {
margin-top: 15pt;
border-bottom: thin solid black;
}
strong {
font-weight: 500;
}
nav ul {
color: white;
}
nav li a {
color: white;
}
nav li a:hover {
color: white;
}
.annotated-code p {
margin-bottom: 2pt;
font-family: "Cantarell", sans-serif;
font-size: smaller;
}
div.sourceCode {
padding: 0;
margin: 0.2em 2em 1em 2em;
border-radius: 5pt;
box-shadow: 1px 1px 3px 0px #ccc;
}
pre.sourceCode {
/* background: #eee; */
color: inherit;
margin: 0;
border-left: thick solid #888;
padding: 10pt 10pt 10pt 20pt;
font-size: 1rem;
}
div.doctestResult {
padding: 0;
margin: 0em 2em 1em 2em;
border-radius: 0 0 5pt 5pt;
box-shadow: 1px 1px 3px 0px #ccc;
}
.programOutput {
font-family: monospace;
background: #fafafa;
color: inherit;
margin: 0;
border-radius: 0 0 5pt 5pt;
border-left: thick solid #586;
padding: 10pt 10pt 10pt 20pt;
font-size: 1rem;
}
pre.ansi2html-content {
margin-bottom: 0;
}
.programOutput .ansi32 {
color: green;
}
.programOutput .ansi31 {
color: red;
}
.programOutput .ansi1 {
font-weight: bold;
}
.doctestResult pre.sourceCode {
border-color: #484;
}
.doctestInput pre.sourceCode {
border-color: #568;
}
.doctestInput div.sourceCode {
border-radius: 5pt 5pt 0 0;
margin-bottom: 0;
}
.doctestResult div.sourceCode {
border-radius: 0 0 5pt 5pt;
margin-top: 0;
border-top: thin solid #ccc;
}
.doctest[data-status='FAIL'] .doctestResult div.sourceCode {
border-radius: 0 0 0 0;
margin-bottom: 0;
}
.doctest[data-status='FAIL'] .doctestResult pre.sourceCode {
border-color: #933;
}
.doctest .doctestExpect div.sourceCode {
border-radius: 0 0 5pt 5pt;
margin-top: 0;
border-top: thin solid #ccc;
}
.doctest .doctestExpect pre.sourceCode:before {
content: "Expected: ";
}
.doctestExpect pre.sourceCode {
border-color: #888;
}
footer {
background: #eee;
padding: 0.5em 0 0.5em 0;
}
blockquote {
border-left: thick solid #888;
padding: 10pt 10pt 10pt 20pt;
margin-left: 2em;
}
table {
margin-left: 2em;
margin-right: 2em;
border-left: thick solid #888;
background: white;
border-radius: 5pt;
box-shadow: 1px 1px 3px 0px #ccc;
}
td, th {
padding: 2pt 5pt 2pt 5pt;
}
th {
border-bottom: solid thin black;
}
tr:nth-child(even) {
background-color: #eee;
}
code {
color: #bd2130;
font-family: "Source Code Pro", monospace;
font-weight: 400;
font-size: smaller;
}
.fold-block {
margin-right: 20pt;
margin-bottom: 20pt;
}
.fold-block div.sourceCode {
margin-left: 30pt;
margin-right: 10pt;
}
.fold-toggle {
text-align: left;
font-family: "Cantarell", sans-serif;
/*font-size: 13pt;*/
font-weight: 400;
font-style: italic;
margin-bottom: 3pt;
}
figure {
margin: 0.2em 2em 1em 2em;
border-left: thick solid #568;
max-width: 100%;
box-shadow: 1px 1px 3px 0px #ccc;
border-radius: 5pt;
padding-bottom: 5pt;
}
figure img {
max-width: 100%;
border-radius: 0 5pt 0 0;
}
figcaption {
font-style: italic;
margin: 5pt 5pt 5pt 5pt;
}