-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
executable file
·59 lines (51 loc) · 985 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
p, div {
font-family: 'Raleway';
}
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
div.note {
padding: 1em;
margin: 1em 0;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
color: #1f5386;
background-color: #FFFFE0;
border: solid 5px #e6d575;
}
div.question {
padding: 1em;
margin: 1em 0;
border-left: 5px solid #1C6EA4;
border-right: 5px solid #1C6EA4;
border-radius: 31px;
}
.solution {
margin-left: 40px;
}
.solution h4 {
font-style: italic;
}
div.TODO {
padding: 1em;
margin: 1em 0;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
color: white;
background-color: #b52914;
border: solid 5px #b52914;
}