forked from github/game-off-2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
54 lines (47 loc) · 848 Bytes
/
index.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
#canv{
height: 500px;
width: 500px;
margin: 0px;
padding: 0px;
border-radius: 30px;
/*-webkit-filter: blur(1px);
filter: blur(1px);*/
}
.miss{
box-shadow: 0px 0px 10px rgba(255,11,11,0.2) !important;
}
.win{
box-shadow: 0px 0px 10px rgba(255,255,11,0.2) !important;
}
body{
background-color: #111111;
}
.center{
text-align: center;
padding: 0px;
}
@media screen and (min-height:650px) {
.center{
margin: 50px 0px 0px 0px;
}
}
#gyro,#gyro_msg,#tweet,#tweet_msg,#command,#command_msg{
text-align: center;
color: #999999;
font-size: 8px;
margin: 0px 15px;
}
#box{
display: flex;
justify-content:center;
margin-top: 30px;
margin-bottom: 10px;
}
#foot{
color: #999999;
text-align: center;
font-size: 8px;
}
#foot a {
color: #999999;
}