-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
55 lines (48 loc) · 796 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
body {
margin: 0;
overflow: hidden;
background-color: black;
}
.scene {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
display: none;
}
.credits {
position: fixed;
bottom: 10px;
right: 10px;
max-width: 250px;
z-index: 10;
text-align: right;
}
a {
display: block;
padding: 2px 0;
color: #1d1f3f;
text-decoration: none;
font-family: Helvetica, Verdana, sans-serif;
font-size: 15px;
}
a:hover {
text-decoration: underline;
}
.gift.hidden {
display: none;
}
.gift {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
cursor: pointer;
}
.gift svg {
width: 100%;
height: 100%;
}