-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (95 loc) · 1.6 KB
/
style.css
File metadata and controls
109 lines (95 loc) · 1.6 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
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
108
109
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.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: 20px;
}
#GetPuzzle,
#SolvePuzzle {
display: inline-block;
text-decoration: none;
color: #fff;
font-weight: normal;
background-color: #90c8ac;
padding: 0.5rem 1rem;
font-size: 22px;
border: 1px solid #90c8ac;
border-radius: 0.4rem;
box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3);
margin-right: 10px;
transition: 0.1s;
}
#GetPuzzle:hover,
#SolvePuzzle:hover {
background-color: #c4dfaa;
border: 1px solid#c4dfaa;
}
.box1 {
background-color: #495c83;
border: 2px solid white;
transition: 0.3s;
}
.box1:hover {
background-color: #7a86b6;
color: black;
}
.box2 {
background-color: #ccd6a6;
border: 2px solid white;
transition: 0.3s;
}
.box2:hover {
background-color: #dae2b6;
color: black;
}
.box3 {
background-color: #94b49f;
border: 2px solid white;
transition: 0.3s;
}
.box3:hover {
background-color: #cee5d0;
color: black;
}
.bl {
border-left: 2px solid black;
}
.bb {
border-bottom: 2px solid black;
}
.br {
border-right: 2px solid black;
}
.bt {
border-top: 2px solid black;
}