-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSudoku.css
110 lines (108 loc) · 1.8 KB
/
Sudoku.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
body{
height: 120vb;
background-color: #f0f0f0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.content{
display: flex;
flex-direction: column;
}
hr {
width: 600px;
}
#errors{
color: rgb(252, 124, 78);
}
#board {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
flex-wrap: wrap;
width: 450px;
height: 450px;
margin-bottom: 10px;
}
.tile {
width: 49px;
height: 49px;
border: 1px solid lightgray;
font-size: 20px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
#digits{
display: flex;
flex-wrap: wrap;
width: 450px;
height: 50px;
}
.number{
width: 44px;
height: 44px;
border: 1px solid #212529;
margin: 3px;
font-size: 20px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.number-selected {
background-color: rgb(173, 173, 173);
}
.tile-start{
background-color: whitesmoke;
}
.h-line {
border-bottom: 1px solid #212529;
}
.v-line{
border-right: 1px solid #212529;
}
#blank-screen{
display: none;
width: 500px;
height: 450px;
border-radius: 12px;
background-color: whitesmoke;
z-index: 1;
}
#blank-screen a{
color: white;
text-decoration: none;
}
@media (max-width: 768px) {
hr {
width: 350px;
}
#board {
width: 335px;
height: 335px;
}
#digits {
width: 335px;
}
.number{
width: 35px;
height: 35px;
margin: 1px;
font-size: 15px;
}
.tile{
width: 37px;
height: 37px;
}
p{
font-size: 12px;
}
#blank-screen {
width: 350px;
}
}