-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (78 loc) · 1.43 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
.Heading{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 40px;
font-weight: bolder;
}
.sudoku_grid{
display: flex;
flex-direction: row;
max-width: 578px;
flex-wrap: wrap;
margin: 10px auto ;
}
.sudoku_grid div{
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
color: white;
font-size: 40px;
box-sizing: border-box;
}
.Buttons{
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 80px;
}
#GetPuzzle,#SolvePuzzle{
display: inline-block;
text-decoration: none;
color: #fff;
font-weight: bold;
background-color: #538fbe;
padding: 10px 35px;
font-size: 24px;
border: 1px solid #2d6898;
box-shadow: inset 0px 1px 0px rgba(255,255,255,.3);
margin-right: 10px;
}
.box1{
background-color: #fd87f3;
border: 2px solid white;
}
.box1:hover{
background-color: #96197b;
color: black;
}
.box2{
background-color: #95f3fa;
border: 2px solid white;
}
.box2:hover{
background-color: rgb(80, 89, 224);
}
.box3{
background-color: #7ff78b;
border: 2px solid white;
}
.box3:hover{
background-color: #14c56f;
color: black
}
.bl{
border-left: 4px solid black;
}
.bb{
border-bottom: 4px solid black;
}
.br{
border-right: 4px solid black;
}
.bt{
border-top: 4px solid black;
}