-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
67 lines (58 loc) · 1006 Bytes
/
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
.container {
position: relative;
width: 100%;
height: 100%;
font-size: 14px;
background-color: #f2f2f2;
}
.cover-tile {
fill: #dddddd;
stroke: #333333;
cursor: pointer;
}
.cover-tile:hover {
fill: #eeeeee;
stroke: #333333;
cursor: pointer;
}
.screen {
position: relative;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
font-family: monospace;
font-size: 2em;
}
.toolbar {
display: flex;
padding: 0.25em;
border: 1px solid #ccc;
}
.mines,
.time {
border: 1px solid #ccc;
padding: 0.1em 0.25em;
}
.state {
text-align: center;
flex: 1;
}
.screen svg {
flex: 1;
}
.results {
position: absolute;
width: 100%;
height: 100%;
text-align: center;
background: rgba(255, 255, 255, 0.6);
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.results-content {
padding: 1em;
background: rgba(255, 255, 255, 0.6);
}