-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
103 lines (98 loc) · 1.6 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
body {
background: #000000;
text-align: center;
color: white;
font-family: "Jost", Verdana, Geneva, Tahoma, sans-serif;
}
a {
color: white;
border-bottom: 1px dotted gray;
text-decoration: none;
}
a:hover {
color: black;
background: yellow;
}
/* HOME */
body.home h1 {
margin-top: 9vh;
font-size: 8vw;
}
ul.bad-things {
margin: 0;
padding: 0;
list-style-type: none;
}
ul.bad-things li {
padding: 0.4vh 0.5vw 0.8vh 0.5vw;
font-size: 5vw;
letter-spacing: 0.15em;
}
ul.bad-things li:before {
content: "\2192\00a0";
opacity: 0.7;
}
ul.bad-things li:after {
/* to equalize alignment */
content: "\00a0\00a0";
}
ul.bad-things li.disabled {
pointer-events: none;
opacity: 0.125;
}
/* INNER */
body.inner h1 {
margin-top: 8vh;
font-size: 4vw;
margin-bottom: 6vh;
}
@media (min-width: 1024px) {
/* HOME */
body.home h1 {
font-size: 5.1em;
}
ul.bad-things li {
font-size: 3.2em;
}
/* INNER */
body.inner h1 {
font-size: 2.55em;
}
}
body.inner summary {
max-width: 46em;
margin: 0 auto;
text-align: justify;
letter-spacing: 0.11em;
font-size: 1em;
line-height: 1.35em;
color: #ddd;
}
video {
width: 98%;
max-width: 50em;
display: block;
margin: 4em auto 4em auto;
max-height: 90vh;
}
footer a {
position: fixed;
right: 0.5em;
bottom: 0.5em;
color: gray;
}
/* SCROLL BAR */
::-webkit-scrollbar {
width: 6px;
height: 2px;
}
::-webkit-scrollbar-track {
background-color: #212529;
}
::-webkit-scrollbar-thumb {
background-color: #868e96;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #adb5bd;
}