-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (54 loc) · 910 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
body {
margin: 0;
overflow: hidden;
}
#info-1, #info-2, #info-3 {
position: absolute;
top: 100px;
width: 50%;
z-index: 100;
display: block;
color: rgb(250, 250, 250);
font-size: 18px;
justify-content: center;
font-family: 'Rajdhani', sans-serif;
}
#info-1 {
left: 60px;
}
#info-2 {
left: 260px;
}
#info-3 {
left: 460px;
}
.btn-ghost {
position: absolute;
top: 30px;
left: 100px;
z-index: 100;
display: block;
color: rgb(250, 250, 250);
border: 1px solid rgb(250, 250, 250);
padding: 8px 24px;
border-radius: 50px;
font-weight: lighter;
opacity: 0.6;
transition: opacity 0.3s ease;
text-decoration: none;
font-family: 'Rajdhani', sans-serif;
touch-action: none;
}
.btn-ghost:hover {
opacity: 1;
touch-action: none;
}
.results {
color: #FFBF00;
font-size: 24px;
font-weight: 900;
}
#webGL-container {
width: 100vw;
height: 100vh;
}