-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (62 loc) · 1.09 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
64
65
66
67
68
69
70
71
72
73
74
75
76
body{
background: #000000;
color: #cecece;
}
body::-webkit-scrollbar {
width: 1vh;
}
body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
background-color: #cecece;
outline: 1px solid slategrey;
}
span{
cursor: pointer;
}
.button{
margin: 5px;
border: 1px solid #cecece;
}
.titre{
display: flex;
flex-direction: row;
justify-content: center;
}
.demineur{
display: flex;
justify-content: center;
justify-items: center;
position: absolute;
top: 5%;
left: 50%;
transform: translate(-50%, -5%);
}
.The_end{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.row{
display: flex;
flex-direction: row;
box-sizing: border-box;
}
.visible{
background-color: #2f2f2f;
border: 5px solid #0c0c0c;
}
.hidden{
background-color: #0c0c0c;
border: 5px solid #2f2f2f;
}
.cells{
width: 75px;
line-height: 70px;
height: 75px;
font-weight: bold;
text-align: center;
font-size: 50px;
cursor: pointer;
}