-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku.css
103 lines (91 loc) · 1.56 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
#setup-game {
display: flex;
/* background-color: yellow; */
margin: 0 auto;
justify-content: center;
align-items: center;
}
header {
text-align: center;
}
#difficulty,
#timer,
#theme {
margin: 50px;
}
#start-btn {
justify-self: center;
width: 300px;
height: 100px;
font-size: 25px;
border-radius: 25px;
}
body.dark{
background-color: black;
color: white;
}
p#lives,
p#timer {
text-align: center;
font-size: 25pt;
margin:10px;
}
#game{
display: flex;
justify-content: center;
}
#number-container>p {
border: 2px solid orange;
/* background-color: greenyellow; */
border-radius: 20%;
width: 60px;
height: 60px;
font-size: 40pt;
margin-left: 50px;
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}
#board{
padding-top:10px;
margin-top:10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
width:600px;
height:600px;
/* background-color: whitesmoke; */
}
.tile{
border:1px solid gray;
margin:0px;
width: 60px;
height: 60px;
text-align: center;
vertical-align:middle;
font-size: 40pt;
}
.rightBorder{
border-right: 4px solid grey;
}
.bottomBorder{
border-bottom: 4px solid grey;
}
.red{
background-color: red;
}
#won{
font-size: 50px;
text-align: center;
text-transform: uppercase;color: #00d3fd;
}
#lost{
font-size: 50px;
text-align: center;
text-transform: uppercase;
color: red;
}
.selected{
background-color: lightgrey;
}