-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (66 loc) · 1.14 KB
/
style.css
File metadata and controls
82 lines (66 loc) · 1.14 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
@font-face {
font-family: "TimesNewArial";
src: url("./TimesNewArialGX.ttf") format("truetype-variations");
}
* {
--base-font-size: 16px;
font-size: max(2.8lvh, var(--base-font-size));
line-height: 2.4em;
font-family: "TimesNewArial";
font-variation-settings: "ital" -100, "srff" 10;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: none;
}
*{
margin: 0px;
padding: 0px;
}
h1,h2 {
border-bottom: 2px solid rgb(0, 0, 0);
}
h2 {
font-size: 1.2em;
padding: 0.5em;
white-space: nowrap;
}
h2 span {
white-space: nowrap;
display: inline-block;
}
#playlist {
padding: 0.5em;
font-size: 0.8em;
}
.liOn {
color: red;
}
.bg{
height: 100vh;
width: 100vw;
}
#overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
}
#content {
position: relative;
z-index: 1;
color: rgb(0, 0, 0);
}
.overlay-visible ~ #content {
color: rgb(255, 255, 255);
}
.overlay-visible ~ #content h1,
.overlay-visible ~ #content h2 {
border-bottom-color: rgb(255, 255, 255);
}
.overlay-visible {
display: block;
}
.overlay-hidden {
display: none;
}