forked from jontrainor/minesweeper-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsgame.css
59 lines (48 loc) · 738 Bytes
/
msgame.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
body {
font-family: helvetica;
}
.mainview, .gameoverview {
display: none;
}
.box {
float: left;
border: 1px solid black;
background-color: grey;
font-size: 16px;
}
.box:last-child:after {
clear: both;
}
.box.selected.empty {
background-color: white;
}
.box.selected.hint {
background-color: #AAAAAA;
}
.box.selected.bomb {
background-color: black
}
.box.flag {
background-color: #555555;
}
.instructionsContainer {
width: 600px;
margin-top: 20px;
clear: both;
}
.instructionsTitle {
font-weight: bold;
font-size: 20px;
}
.startButton, .restartButton {
width: 200px;
height: 150px;
margin-top: 20px;
border: 1px solid black;
font-weight: bold;
font-size: 16px;
}
a {
display: block;
margin-top: 20px;
}