-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (68 loc) · 1.17 KB
/
style.css
File metadata and controls
79 lines (68 loc) · 1.17 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
body {
background-color: #2c3e50;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #ffffff;
margin-top: 60px;
}
.digit {
font-size: 2em;
color: #ffffff;
}
table td{
border: 1px solid #000000;
width: 50px;
height: 50px;
padding: 0 0 0 0;
text-align: center;
border-radius: 0.25em;
background-color: rgb(145, 151, 153);
font-weight: bold;
position: relative;
}
.darker{
background-color: rgb(96, 135, 151);
}
.originalPosition .digit{
color: rgb(189, 255, 82);
}
.impossible{
background-color: rgb(216, 99, 99);
}
.fork{
background-color: rgb(190, 160, 103);
}
.possibleCount{
padding-right: 1px;
position: absolute;
bottom: 0;
right: 0;
color: rgb(71, 71, 71);
font-size: 14px;
}
td input{
height: 100%;
width: 100%;
text-align: center;
font-size: 2em;
color: #ffffff;
background: transparent;
border: 0;
}
#boardContainer{
position: relative;
width: fit-content;
}
#sudokuBoardTrace{
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
}