-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (64 loc) · 1.19 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
* {
font-family: Helvetica, Arial, sans-serif;
}
body div#board {
margin: 30px auto 0;
padding: 1px;
border: 1px solid #999;
}
body div#board:hover {
cursor: pointer;
}
body div#board div.piece {
float: left;
width: 24px;
height: 20px;
margin: 1px;
padding-top: 4px;
background-color: #bbb;
color: #666;
text-align: center;
}
body div#board div.piece:hover {
background-color: #ccc;
}
body div#board div.piece:active {
background-color: #aaa;
}
body div#board div.piece span { }
body div#board div.piece div.boom {
color: #ee3333;
font-size: 24px;
position: relative;
left: -25px;
top: -25px;
}
body div#content div.button {
height: 35px;
padding-top: 10px;
color: #fff;
font-weight: bold;
font-size: 24px;
border: 1px solid #dedede;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
margin: 20px auto 30px;
background-color: #bbb;
}
body div#content div.button:hover {
cursor: pointer;
background-color: #ccc;
}
body div#content div.button:active {
background-color: #aaa;
}
body div#content div.button#helpButton {
width: 45px;
}
body div#content div.button#newGameButton {
width: 150px;
}
body div#content div.button p {
text-align: center;
}