-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
143 lines (121 loc) · 1.88 KB
/
Copy pathindex.css
File metadata and controls
143 lines (121 loc) · 1.88 KB
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
@font-face {
font-family: minesweeper;
src: url(fonts/mine-sweeper.ttf);
}
@import url("https://fonts.cdnfonts.com/css/digital-numbers");
body,
html {
height: 100%;
width: 100%;
overflow: hidden;
user-select: none;
}
body {
display: flex;
align-items: center;
justify-content: center;
background-image: url(image/yes.jpg);
}
.board {
border: 5px outset white;
padding: 8px;
width: fit-content;
margin: auto;
background-color: lightgrey;
}
.gameTape {
width: auto;
height: 50px;
margin: auto;
border: 4px inset white;
padding: 8px;
background-color: lightgrey;
display: flex;
justify-content: space-between;
}
.timer,
.minesCount,
style {
color: red;
background-color: black;
font-size: 30px;
display: flex;
align-items: center;
justify-content: center;
font-family: "Digital Numbers", "Times New Roman", Times, serif;
}
.style {
position: absolute;
opacity: 0.2;
}
.reset {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
font-size: 20px;
background-color: lightgray;
border: 4px outset white;
}
.resetClicked {
width: 40px;
height: 40px;
font-size: 20px;
background: #bdbdbd;
border: 2px inset white;
}
#gamestatus {
font-size: 20pt;
}
.minesField {
display: grid;
background-color: lightgray;
border: 7px inset white;
display: flex;
flex-wrap: wrap;
margin-top: 8px;
}
.t,
.tclicked {
font-family: "minesweeper", sans-serif;
text-align: center;
cursor: pointer;
width: 20px;
height: 20px;
border-style: outset;
border-width: 4px;
}
.tclicked {
background: #bdbdbd;
border: 2px solid grey;
width: 24.8px;
height: 24.8px;
}
.x0 {
color: transparent;
}
.x1 {
color: blue;
}
.x2 {
color: green;
}
.x3 {
color: red;
}
.x4 {
color: navy;
}
.x5 {
color: brown;
}
.x6 {
color: teal;
}
.x7 {
color: black;
}
.x8 {
color: gray;
}