forked from yanpeiqiong7133/tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (129 loc) · 2.29 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body{
font-family: "Lucida Calligraphy";
color: #999999;
font-size:14px;
font-weight:bold;
}
/*底板样式*/
.game{
background-color: #333333;
border: 6px solid #DEDEDE;
height: 600px;
width: 99%;
}
.game #gameLevel{
width: 40px;
margin-right: 20px;
}
.tool{
height: 30px;
margin-left: 480px;
margin-top: 30px;
width: 245px;
}
.tool a{
background-color: #EEDEDE;
border: 2px solid #bd8d79;
border-radius: 7px 7px 7px 7px;
color: #786D6D;
display: inline-block;
height: 21px;
text-align: center;
text-decoration: none;
vertical-align: top;
width: 54px;
margin-right: 30px;
}
.tool .available{
background-color:#b2cbbd;
border: 2px solid #8f9995;
color: #928d8d;
}
.tool .available:hover,#pause:hover{
background-color:#f0f5f3;
}
.tool .disabled{
background-color:#a9aca7;
cursor:default;
color:#a6a1a1;
}
#main_container{
float:left;
margin-left: 409px;
margin-top: 26px;
border:5px solid #999999;
border-radius:6px;
}
#main{
border:1px solid #999;
margin-left: 7px;
margin-top: 10px;
}
#game_info{
border: 3px solid #999999;
border-radius: 6px 6px 6px 6px;
float: left;
height: 450px;
margin-left: 30px;
margin-top: 41px;
width: 200px;
}
#map{
position:absolute;
z-index:0;
left:436px;
top:116px;
}
#message{
color: #EEBE6B;
display: none;
font-size: 28px;
font-weight: bold;
left: 436px;
padding-left: 10px;
padding-top: 158px;
position: absolute;
top: 116px;
z-index: 3;
}
#tetris{
position:absolute;
left:436px;
top:116px;
z-index:2;
}
.nextShape{
position:relative;
margin:10px;
border-style:solid;
border-width:0.8px;
border-color:#999
}
#nextShape{
margin-bottom: 10px;
margin-left: 48px;
margin-top: 10px;
position: relative;
top: 0;
z-index: 0;
}
#totalScore{
margin-top:40px;
margin-left: 15px;
font-size: 18px;
font-weight:bold;
color:#b89898;
}
#totalScore div{
margin-top:15px;
}
#totalScore span.score_title{
display:inline-block;
width:80px;
text-align:right;
margin-right:20px;
}
#totalScore #scoreShow,#scoreShow_title{
font-size:20px;
color:#f5ebeb;
}