-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
143 lines (122 loc) · 2.11 KB
/
styles.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
.modal {
display: none;
width: 50%;
padding: 10px;
position: absolute;
top: 40%;
left: 25%;
z-index: 1000;
background: white;
border: 1px dashed #aaa;
box-shadow: 10px 10px 20px #aaa;
}
.new-game h1 {
color: red;
}
.field {
border: 5px solid #039;
margin: 20px auto;
}
.row {
display: flex;
}
.cell {
width: 24px;
height: 24px;
border: 1px solid gray;
font-size: 14px;
font-weight: bold;
text-align: center;
line-height: 23px;
}
.cell.closed {
background-color: #eee;
border: 3px outset #aaa;
width: 20px;
height: 20px;
}
.cell.open {
}
.cell.open-1:after {
content: "1";
}
.cell.open-2:after {
content: "2";
}
.cell.open-3:after {
content: "3";
}
.cell.open-4:after {
content: "4";
}
.cell.open-5:after {
content: "5";
}
.cell.open-6:after {
content: "6";
}
.cell.open-7:after {
content: "7";
}
.cell.open-8:after {
content: "8";
}
.cell.flagged {
background-color: #eee;
border: 3px outset #aaa;
width: 20px;
height: 20px;
}
.cell.flagged:after {
content: "F";
color: red;
}
.cell.exploded {
background-color: #f00;
color: #ff0;
}
.counter {
width: 100px; height: 30px;
padding: 5px 5px 15px 5px;
background: #333; color: #9f9;
text-align: center;
font-size: 30px;
font-family: monospace;
position: relative;
}
.counter.counter-moves {
}
.counter.counter-moves:after {
content: "ходов";
position: absolute;
width: 100px;
padding: 1px 5px;
background: #444;
font-size: 11px;
display: block;
bottom: 0px; left: 0px;
}
.counter.counter-game-dur {
}
.counter.counter-game-dur:after {
content: "сек";
position: absolute;
width: 100px;
padding: 1px 5px;
background: #444;
font-size: 11px;
display: block;
bottom: 0px; left: 0px;
}
.counter.counter-flags {
}
.counter.counter-flags:after {
content: "флагов";
position: absolute;
width: 100px;
padding: 1px 5px;
background: #444;
font-size: 11px;
display: block;
bottom: 0px; left: 0px;
}