-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (60 loc) · 1.22 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
.sudoku {
width: 800px;
height: 800px;
background: #fff;
border: 3px solid black;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
margin-right: 30px;
touch-action: manipulation;
}
.sudoku-block {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
border: 2px solid black;
}
.sudoku-cell {
display:flex;
justify-content:center;
align-items:center;
border: 2px solid grey;
line-height: 100%;
}
.sudoku-cell > span {
font-size: 36px;
user-select: none;
}
.active-sudoku-cell {
background: #ffe97b;
}
.sudoku-cell-error {
border-color: red;
}
.sudoku-clue {
background: #ccc;
}
.sudoku-pencilmarks {}
.sudoku-pencilmarks > ul {
padding: 0;
margin: 0;
display: grid;
width: 100%;
height: 100%;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
}
.sudoku-pencilmarks > ul > li {
display: flex;
justify-content:center;
align-items:center;
font-size: 16px;
user-select: none;
}
body {
display: grid;
grid-template-columns: 810px 1fr;
background: #c3dff6;
font-family: Verdana, sans-serif;
}