-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (57 loc) · 961 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
56
57
58
59
60
61
62
63
64
65
66
67
68
.game, .result{
width: 100%;
background-color: #2b87d1;
color:white;
text-align: center;
height:540px;
}
.icon{
width:100px;
height: 100px;
margin-top:130px;
margin-bottom: 30px;
-webkit-user-drag: none;
border: 50px;
}
.guide{
font-size: 28px;
}
.target{
transform: none;
margin:0;
}
.title, .resultText{
font-size: 80px;
}
.content{
font-size:24px;
}
.hidden{
display: none;
}
.red{
background-color: #ce2636;
}
.green{
background-color: #4bdb6a;
}
.Active{
background-color: white !important;
transition: all 0.1s;
}
.recordPanel{
text-align: center;
background-color: white;
border-radius: 5px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
width:400px;
padding: 30px;
transform: translateX(-200px);
margin-left:50%;
margin-top:30px;
margin-bottom: 10px;
}
.recordPanel>p{
font-size: 24px;
margin-bottom:-5px;
}