-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (110 loc) · 1.65 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
120
121
122
@font-face {
font-family: 'Saxmono';
src: url('MagdaClean.otf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'DIN';
src: url('DINNextLTPro-Regular.otf');
}
body{
margin: 0px;
background-color: black;
width: 100%;
height: 100%;
overflow: hidden;
}
#wrapper {
position: relative;
width: 100%;
height: 100%;
}
#buttonWrapper {
position: absolute;
width: 100%;
bottom: 2px;
left: 0px;
cursor:pointer;
z-index: 10;
}
button {
height: 40px;
width: 6.5%;
font-family: 'Saxmono';
font-size: 1.2vw;
margin: 0px 0px 10px 1%;
background-color: rgba(255,255,255,1.0);
border-style: solid;
border-width: 1px;
border-color: white;
border-radius: 5px;
}
button:hover{
background-color: rgba(255, 255, 255, 0.8);
}
#gravity{
font-size: 1.2vw;
width: 11%;
}
#asteroid{
font-size: 1.2vw;
width: 12%;
}
#intro_about{
font-family: 'Saxmono';
position: absolute;
width: 50%;
top: 25%;
left: 25%;
z-index: 10;
color: white;
font-size: 1em;
text-align: center;
}
#about{
font-family: 'Saxmono';
position: absolute;
width: 15%;
top: 25%;
left: 4%;
z-index: 10;
color: black;
font-size: 1em;
}
#rock{
font-family: 'Saxmono';
position: absolute;
width: 40%;
top: 15%;
left: 40%;
z-index: 10;
color: white;
font-size: 1em;
}
#gas{
font-family: 'Saxmono';
position: absolute;
width: 40%;
bottom: 17%;
right: 5%;
z-index: 10;
color: white;
font-size: 1.2vw;
text-align: right;
}
h1{
font-family: 'DIN';
font-size: 2em;
letter-spacing: 12px;
}
#prompt{
font-family: 'Saxmono';
position: absolute;
width: 100%;
top: 20px;
z-index: 10;
color: white;
font-size: 1.3vw;
text-align: center;
}