-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
364 lines (303 loc) · 5.34 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
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/* fonts */
@font-face {
font-family: 'Noto Sans Regular';
src: url('fonts/NotoSans-Regular.ttf') format("truetype")
}
@font-face {
font-family: 'Noto Sans Bold';
src: local('fonts/NotoSans-Bold.ttf') format("truetype");
}
@font-face {
font-family: 'Noto Sans Italic';
src: local('fonts/NotoSans-Italic.ttf') format("truetype");
}
@font-face {
font-family: 'Noto Sans Bold Italic';
src: local('fonts/NotoSans-BoldItalic.ttf') format("truetype");
}
html,
body {
background: white;
font-size: 10pt;
font-family: 'Noto Sans Regular', sans-serif;
}
code {
font-size: .75em;
}
h1,
h2,
h3,
h4 {
font-family: "Noto Sans Regular", sans-serif;
font-style: bold;
margin-bottom: 0px;
}
h2,
h3 {
text-transform: uppercase;
}
h1 {
font-size: 23pt;
line-height: auto;
}
h2 {
font-size: 18pt;
line-height: auto;
}
h3 {
font-size: 10pt;
}
h4 {
font-size: 10pt;
}
h1.bigtitle {
font-size: 40pt;
}
table th {
font-weight: bold;
text-align: left;
padding: 4px;
background-color: #005CAB;
color: #ffffff;
}
table tr.odd td {
color: #000000;
background-color: #ffffff;
}
table tr.even td {
color: #000000;
background-color: #f3f2f2;
}
.note {
text-transform: uppercase;
}
.example {
border: 1px dashed darkblue;
background: lightblue;
padding: 1em;
}
.sidebar {
text-transform: uppercase;
color: #00467f;
}
.orange_sidebar {
text-transform: uppercase;
color: #c85c19;
}
.confidential {
border-style: dashed;
border-color: red;
border-width: 3px;
}
.boxtext {
border-style: solid;
border-width: 1px;
border-color: #005CAB;
background: #e6f3ff;
margin-top: 10px;
padding: 0px;
}
.boxtext h3 {
text-transform: uppercase;
font-size: 14pt;
text-align: right;
color: #78716e;
margin: 0px;
padding: 2px
}
.boxtext h3:first-child {
text-transform: uppercase;
font-size: 14pt;
text-align: right;
color: #ffffff;
padding-right: 5px;
background-color: #005CAB;
/*
display:inline-block;
float: right;
position: relative;
margin-top: -28px;
border-style: solid;
border-width: 1px;
border-color: #005CAB;
background-color: #e6f3ff;
border-bottom-style: none;
*/
}
.boxtext h4 {
text-transform: title;
font-size: 12pt;
color: #404965;
padding: 2px
}
.boxtext p {
padding: 5px;
}
.greybox {
border-style: solid;
border-width: 1px;
border-color: #78716e;
background: #f3f2f2;
margin-top: 5px;
padding: 0px 4px;
}
/* TODO: Eventually use custom bullet's to get those big chunky light blue squres that we want. */
ul {
list-style: square;
}
/* Colors */
h1 {
color: #6b8a21;
border-bottom: 2px solid #6b8a21;
}
h2 {
color: #004580;
border-bottom: 1px dotted #004580;
}
h3 {
color: #004580;
}
h4 {
color: #6b8a21;
}
.h5 {
color: #000000;
}
.orange_sub {
color: #c85c19;
}
.note {
color: #c85c19;
}
/* Print Formatting */
h1,
h2 {
page-break-before: always;
}
html,
body {
width: 100%;
margin: 0mm;
padding-top: 10mm;
float: none;
}
h2,
h3,
h4 {
page-break-after: avoid;
}
h1.title {
display: flex;
justify-content: center;
flex-direction: column;
height: 400px;
page-break-before: avoid;
}
h2.title {
page-break-before: avoid;
}
h1.bigtitle {
page-break-before: avoid;
}
.pagebreak {
page-break-after: always;
}
p {
orphans: 3;
widows: 3;
}
/* Images in their own paragraph should be centered.*/
/*figure {
display: block;
margin-left: auto;
margin-right: auto;
}*/
figure {
text-align: center;
}
figcaption {
font-family: "Noto Sans Regular", sans-serif;
font-style: italic;
text-align: center;
font-size: 8pt;
}
img.inlogo {
text-align:left;
}
/* prevent images from bleeding over the edge of the printed page: */
img {
max-width: 100% !important;
}
/* Section Specific Formatting */
.coverpage {
page-break-after: always;
}
/* Table of Contents */
nav {
page-break-after: always;
}
nav li a:visited,
nav li a:link,
nav li a:hover,
nav li a:active {
font-size: 10pt;
color: black;
text-decoration: none;
}
nav.toc ul ul li {
font-size: 10pt;
}
nav h1 {
text-align: center;
}
.covertop {
margin-bottom: 10mm;
text-align: center;
}
.covermiddle {
margin-top: 20mm;
margin-bottom: 60mm;
text-align: center;
}
/*
line above and below
running people icon to the left
float right of the icon
*/
.activity {}
/*
line above and below
speech bubbles icon to the left
float right of the icon
*/
.discussion {}
/*
line above and below
person icon to the left
float right of the icon
*/
.input {}
/*
line above and below
magnefying glass icon to the left
float right of the icon
*/
.deepening {}
/*
line above and below
puzzle icon to the left
float right of the icon
*/
.synthesis {}
/*
line above and below
pencil icon to the left
float right of the icon
*/
.handout {}
/* Eventually use columns to add a sidebar
div.titlepage+div.indexnote+div.index {
column-count: 2;
column-gap: 12pt;
}
*/