-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (105 loc) · 2.38 KB
/
style.css
File metadata and controls
122 lines (105 loc) · 2.38 KB
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
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
/* TEXT BOXES */
.infoboxblue {
/* padding: "text distance from top"em "text distance from right"em "text distance from bottom"em "text distance from left"em */
padding: 1em 1em 1em 7em;
/* magin-bottom: empty space below text box */
margin-bottom: 10px;
border: 4px #096B7263;
border-style: dashed solid;
border-radius: 10px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
/* color of the text */
color: #096B72;
background-color: #e6f3fc80;
}
.infoboxyellow {
/* padding: "text distance from top"em "text distance from right"em "text distance from bottom"em "text distance from left"em */
padding: 1em 1em 1em 7em;
/* magin-bottom: empty space below text box */
margin-bottom: 10px;
border: 4px #ffe135;
border-style: dashed solid;
border-radius: 10px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
color: #8b0000;
background-color: #fff8e7;
}
.infoboxred {
/* padding: "text distance from top"em "text distance from right"em "text distance from bottom"em "text distance from left"em */
padding: 1em 1em 1em 7em;
/* magin-bottom: empty space below text box */
margin-bottom: 10px;
border: 4px #ce2029;
border-style: dashed solid;
border-radius: 10px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
color: #800000;
background-color: #ff9999;
}
.question {
background-image: url("pictures/question.png");
}
.info {
background-image: url("pictures/info.png");
}
.exclamation {
background-image: url("pictures/exclamation.png");
}
.infobox-header {
text-align: left;
font-size: 150%;
}
/*--- LOGO ---*/
.toc-logo {
width: 200px !important;
object-fit: contain;
margin: 0 auto;
display: block;
}
.toc-logo img {
max-width: 100%;
margin-bottom: 10px;
}
.summary > li:first-child {
height: auto !important;
}
/* HERO IMAGE */
.hero-image-container {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 340px;
background-color: #133454;
}
.hero-image {
width: 100%;
height: 340px;
object-fit: cover;
}
.page-inner {
padding-top: 350px !important;
}