-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (56 loc) · 839 Bytes
/
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
*
{
margin: 0;
padding: 0;
}
html,
body
{
height: 100vh;
font-family: 'Poppins';
overflow-x: hidden;
font-family: 'Roboto', sans-serif;
}
.webgl
{
position: fixed;
top: 0;
left: 0;
outline: none;
z-index: -1;
}
nav {
margin-top: 20px;
margin-left: 20px;
width: 100%;
display: flex;
}
h1 {
margin-top: 3px;
color: white;
margin-right: 20px;
font-size: 20pt;
}
#selectRandom {
color: white;
background-color: #6828b5;
position: absolute;
width: 150px;
text-align: center;
padding: 10px;
bottom: 60px;
border-radius: 5px;
margin-left: calc(50% - 85px);
cursor: pointer;
border: none;
}
#tapeName {
color: white;
font-size: 16pt;
display: block;
width: 100%;
text-align: center;
margin-top: 20px;
font-weight: bolder;
cursor: pointer;
}