-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (42 loc) · 759 Bytes
/
style.css
File metadata and controls
42 lines (42 loc) · 759 Bytes
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
body {
background-color: #000;
color: #fff;
font-weight: 600;
font-family: "Ruda", sans-serif;
}
.full-screen {
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
}
#background {
}
#bg-canvas {
}
#foreground {
z-index:100;
font-size:1vw;
letter-spacing:.05em;
}
#foreground .help {
background-color: rgba(0,0,0,0.5);
box-shadow:inset 0 0 15px 10px rgba(20,20,20,0.5);
color: rgba(255,255,255,0.8);
position:absolute;
top:20px; right:20px;
padding: 5px 25px;
border-radius: 8px;
opacity:.9;
}
#foreground .help ul {
list-style:none;
}
#foreground .help ul li span {
display:inline-block;
min-width:4vw;
margin-right:.3em;
text-align:right;
color:#fff;
}