-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 1.24 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
body {
text-align: center;
background: rgb(0,92,184);
background: radial-gradient(circle, rgba(0,92,184,1) 0%, rgba(255,255,255,1) 0%, rgba(153,153,153,1) 100%);
}
.cell {
box-sizing: border-box;
border-radius: 3px;
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-family: Arial;
/* color: lightseagreen; */
/* background-color: lightskyblue; */
border: 3px solid steelblue;
border-style: outset;
/* opacity: 0.8; */
}
.flagged {
/* content: '🚩'; */
}
.flagged::after {
content: '🚩';
}
.opened {
border: 1px solid steelblue;
/* border-style: none; */
cursor: default;
}
.mouse-hovering {
background-color: rgba(255, 255, 255, 0.3);
}
.mousedown {
border-style: inset;
}
.empty {
}
#grid {
margin: auto;
width: 247px;
height: 250px;
/* background-color: black; */
display: flex;
justify-content: center;
/* gap: 1px; */
flex-wrap: wrap;
border: 1px solid black;
background: rgb(0,92,184);
background: linear-gradient(352deg, rgba(0,92,184,1) 0%, rgba(0,114,255,1) 0%, rgba(149,221,255,1) 100%);
}