-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (93 loc) · 1.67 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
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
#container{
height: auto;
width: 540px;
background-color: white;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-content: space-evenly ;
margin: 0 auto;
}
#navbar navbar-light{
margin: 0;
padding: 0;
background: #191919;
}
body{
margin: 0;
padding: 0;
font-family: sans-serif;
background: #34495e;
}
strong{
margin: auto;
width: 50%;
border: 3px solid #3498db;
padding: 10px;
border-radius: 50px;
color: white;
text-shadow: yellow;
background: #191919;
text-align: center;
}
#generate-sudoku{
margin:auto;
display:block;;
border-radius: 25px;
transition: 0.25s;
cursor: pointer;
}
#generate-sudoku:hover{
width: 230px;
background: red ;
}
#solve{
margin:auto;
display:block;
border-radius: 25px;
transition: 0.25s;
cursor: pointer;
}
#solve:hover{
width: 150px;
background: green;
}
#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;
}