-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundle.css
112 lines (111 loc) · 1.61 KB
/
bundle.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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body,
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
background: #000;
letter-spacing: 1px;
text-decoration: none;
font: 12px/19px verdana, sans-serif;
text-transform: uppercase;
color: #999;
}
body button {
z-index: 20;
position: absolute;
bottom: 20px;
right: 20px;
display: block;
margin: 0;
}
body button#controls {
bottom: 45px;
}
body .box {
transition: opacity 0.3s ease-out;
border-radius: 300px;
opacity: 0;
z-index: 10;
width: 580px;
height: 580px;
background: #000;
position: absolute;
top: -9999px;
left: -9999px;
margin: -290px 0 0 -290px;
padding: 70px 106px 0 106px;
text-align: center;
border: 1px solid #000;
}
body .box.opened {
top: 50%;
left: 50%;
opacity: 1;
}
body .box.controls-box p:first-child {
margin-bottom: 90px;
}
body .box.controls-box img {
width: 200px;
height: auto;
}
a,
button {
text-decoration: none;
color: #666;
}
a:hover,
button:hover {
color: #888;
}
button {
background: none;
border: 0;
padding: 0;
color: #444;
}
p {
margin: 0 0 10px 0;
}
main {
position: relative;
transform: translateY(-50%);
top: 50%;
transition: opacity 500ms ease-in-out;
opacity: 0;
}
main.ready {
opacity: 1;
}
canvas {
display: block;
margin: 0 auto;
background: #323232;
}
#logo {
position: absolute;
top: 550px;
width: 100%;
}
#logo img {
width: 106px;
height: auto;
display: block;
margin: 0 auto;
}
:-moz-any-link:focus {
color: #eee;
}
::selection {
color: #eee;
}
::-moz-selection {
color: #eee;
}