-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
90 lines (77 loc) · 1.46 KB
/
main.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
.game-field {
position: relative;
height: 220px;
width: 220px;
}
.info-box {
width: 220px;
margin: 0 0 10px 0;
}
.action-buttons {
margin: 5px 0 0 0;
}
.game-field p {
margin: 13px;
}
.action-buttons span {
cursor: pointer;
background: #edc99d;
padding: 5px;
box-shadow: 1px 1px 5px #777;
border-radius: 5px;
width: 205px;
text-align: center;
display: inline-block;
-moz-user-select: -moz-none;
-o-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
}
.action-buttons span:active {
box-shadow: none;
}
.game-field div {
position: absolute;
width: 50px;
height: 50px;
background: #edc99d;
text-align: center;
vertical-align: middle;
font-size: 26px;
line-height: 22px;
border-radius: 10px;
box-shadow: 1px 1px 3px #777;
color: #535353;
cursor: pointer;
-moz-user-select: -moz-none;
-o-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
}
.game-field .null-field {
box-shadow: none !important;
background: none !important;
}
.counter-text {
padding: 10px 0 0 0;
float: left;
}
.loader {
background: url("loader.gif") no-repeat 0 50% !important;
width: 42px;
height: 37px;
float: right;
}
.hide {
display: none !important;
}
.clear {
clear: both;
}
.error {
margin: 3px 0;
color: red;
font-size: 14px;
}