-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·87 lines (73 loc) · 1.28 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
.center {
text-align: center;
}
#controller {
position: absolute;
left: 100px;
}
#game .toola {
float: left;
}
#game #toolslc {
display: none;
position: absolute;
border: 4px solid #1b43e1;
background-color: #fff;
width: 163px;
padding: 8px;
}
#game #toolslcifs {
display: none;
position: absolute;
border: 4px solid #1b43e1;
background-color: #fff;
width: 150px;
padding: 8px;
}
#game #toolslcifs .toolifs {
float: left;
border: 1px solid;
margin: 3px;
}
#game .toolifs {
width: 35px;
height: 25px;
cursor: hand;
}
#game .tool {
float: left;
width: 35px;
height: 35px;
cursor: hand;
}
#game #toolslc .tool {
margin: 5px;
}
#game .tool:hover {
outline: 4px solid #00C7FF;
}
#game .toolifs:hover {
outline: 4px solid #ff8100;
}
#game button {
position: absolute;
left: -100px;
}
#game #btn_start {
font-size: 40px;
border-radius: 15px;
}
span.score-star {
font-size: 60px;
color: #FF0;
text-shadow: 0 8px 10px #F7C810;
/*-webkit-animation: bianxiao 800ms;*/
}
@keyframes bianxiao {
from {
font-size: 500px
}
to {
font-size: 60px
}
}