-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (122 loc) · 2.36 KB
/
style.css
File metadata and controls
124 lines (122 loc) · 2.36 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
123
124
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
body {
font-family: 'Lato', 'Arial', sans-serif;
margin: 0;
padding: 0;
overflow-x: hidden;
overflow-y: auto;
}
.container * {
font-weight: 700 !important;
}
.not-left-bar {
margin: 0; padding: 0;
overflow-y: auto;
}
.top-page {
position: absolute;
left: 250px;
width: calc(100% - 250px);
background: #226e93 url('img/banner.png');
background-size: cover;
background-position: center center;
box-sizing: border-box;
padding: calc(32em / 3);
}
.left-bar {
position: fixed;
top: 0;
bottom: 0;
width: calc(250px - 3em);
background: #212121;
padding: 4em 0.5em 3.5em 2.5em;
overflow-y: auto;
overflow-x: hidden;
}
.container {
position: absolute;
top: calc(34em / 3);
left: calc(28em / 3);
width: calc(100% - 2em);
box-sizing: border-box;
padding: calc(32em / 3);
}
.content {
margin: 20px 0 0 20px;
padding: 0;
}
/* NOW, normal tags */
ul {
list-style-type: square;
}
.info {
position: fixed;
top: calc(100vh - 3em);
left: calc(52em / 3);
cursor: pointer;
border-radius: 0.8em;
width: 1.5em;
height: 1.5em;
padding: 0.25em;
margin: 0em;
transition: 0.3s;
}
.info:hover {
background: #00000018;
transition: 0.3s;
}
.left-bar * {
color: #fff;
}
.center {
text-align: center;
}
a {
text-decoration: none;
color: #006580;
}
a:hover, .selected, summary:hover {
color: #49aad4;
text-decoration: none;
cursor: pointer;
}
details > summary {
list-style: none;
}
details > summary::-webkit-details-marker {
display: none;
}
summary::before {
content: "▼ ";
list-style-position: outside;
}
details[open] > summary::before {
content: "▲ ";
}
br.big {
margin: 0 0 1.5em 0;
}
.container summary {
color: #226e93;
font-size: 1.1em;
padding-bottom: 0.75em;
margin-bottom: 0.75em;
border-bottom: #bbb solid 1px;
}
.container summary::before, .container details[open] > summary::before {
content: "";
}
.container summary::after {
content: "▼";
color: #888;
float: right;
}
.container details[open] > summary::after {
content: "▲";
}
details[open] {
margin-bottom: 1em;
}
ol li::marker {
list-style-position: outside;
}