-
Notifications
You must be signed in to change notification settings - Fork 15
/
style.css
72 lines (57 loc) · 1004 Bytes
/
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
#container{
height: auto;
width: 540px;
background-color: white;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-content: space-evenly ;
margin: 0 auto;
}
#generate-sudoku{
margin:auto;
display:block;;
}
#solve{
margin:auto;
display:block;;
}
#container div{
background-color: whitesmoke;
height: 60px;
width: 60px;
box-sizing: border-box;
font-family: sans-serif;
text-align: center;
vertical-align: middle;
line-height: 60px;
font-size: 30px;
color: green;
}
#container div:hover{
background-color: lightskyblue;
}
.lsb{
border-left: black 2px solid;
}
.bsb{
border-bottom: black 2px solid;
}
.rsb{
border-right: black 2px solid;
}
.tsb{
border-top: black 2px solid;
}
.ldb{
border-left: black 0.6px dashed;
}
.bdb{
border-bottom: black 0.6px dashed;
}
.rdb{
border-right: black 0.6px dashed;
}
.tdb{
border-top: black 0.6px dashed;
}