-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
119 lines (119 loc) · 2.04 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
html,
body {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #708090;
cursor: default;
font-family: sans-serif;
}
html .start-button,
body .start-button {
display: block;
position: fixed;
color: #fff;
border: none;
opacity: 0.5;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
background: #000;
transition: opacity 1s;
transform: translateZ(0);
font-size: 100px;
cursor: pointer;
}
html .start-button.fade-out,
body .start-button.fade-out {
opacity: 0;
}
html .worlds,
body .worlds {
position: fixed;
left: 0;
bottom: 0;
z-index: 3;
opacity: 0.3;
padding: 10px;
transition: opacity 0.5s;
}
html .worlds.fade-out,
body .worlds.fade-out {
opacity: 0;
}
html .worlds:hover,
body .worlds:hover,
html .worlds.start,
body .worlds.start {
opacity: 0.6;
}
html .worlds .world-link,
body .worlds .world-link {
display: inline-block;
width: 30px;
height: 30px;
z-index: 2;
background: transparent;
border: none;
color: #fff;
cursor: pointer;
font-size: 16px;
text-decoration: none;
text-align: center;
opacity: 0.5;
transition: opacity 0.2s;
}
html .worlds .world-link:hover,
body .worlds .world-link:hover {
opacity: 1;
}
html .worlds .world-link:focus,
body .worlds .world-link:focus {
outline: none;
}
html .controls,
body .controls {
position: fixed;
right: 0;
bottom: 0;
z-index: 1;
opacity: 0.3;
padding: 10px;
transition: opacity 0.5s;
}
html .controls.fade-out,
body .controls.fade-out {
opacity: 0;
}
html .controls:hover,
body .controls:hover {
opacity: 0.6;
}
html .controls button,
body .controls button {
width: 40px;
height: 40px;
z-index: 2;
background: transparent;
border: none;
color: #fff;
cursor: pointer;
font-size: 20px;
opacity: 0.5;
transition: opacity 0.2s;
}
html .controls button:hover,
body .controls button:hover {
opacity: 1;
}
html .controls button:focus,
body .controls button:focus {
outline: none;
}
html .controls .audio-button.off,
body .controls .audio-button.off {
text-decoration: line-through;
}