-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (52 loc) · 926 Bytes
/
style.css
File metadata and controls
56 lines (52 loc) · 926 Bytes
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
p.caption {
color: #777;
margin-top: 10px;
text-align: center;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.header-section-number {
padding-right: .2em;
font-weight: 500;
}
.level1 .header-section-number {
display: inline-block;
border-bottom: 3px solid;
}
.level1 h1 {
border-bottom: 1px solid;
}
/* top, right, bottom, left */
/* Reflection questions */
div.reflect {
border: 4px solid #307eb2;
border-radius: 8px;
background-color: #c3e1f4;
padding: 5px 8px 2px 8px;
margin: 0px 10px 10px 10px;
}
div.reflect::before {
content: "Reflect: ";
font-weight: bold;
}
/* top, right, bottom, left */
/* Math Boxes */
div.mathbox {
border: 4px solid #FAFCBC;
border-radius: 8px;
background-color: #FAFCBC;
padding: 5px 8px 2px 8px;
margin: 0px 10px 10px 10px;
}
div.mathbox::before {
content: "Math Box: ";
font-weight: bold;
}