-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (57 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Impact, "Arial Narrow Bold", sans-serif;
color: #252525;
}
body {
padding: 1%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
}
.title {
text-align: center;
font-size: 36px;
}
.grid__container {
background-color: #000000;
display: flex;
flex-wrap: wrap;
flex: auto;
width: 500px;
height: 500px;
border-radius: 4px;
gap: 1px;
}
.grid__reset {
background-color: #0000ff;
width: 80px;
height: 30px;
border: none;
border-radius: 7px;
color: #ffffff;
font-size: 20px;
font-weight: bold;
box-shadow: #646363 4px 4px 6px;
transition: scale 0.3s;
transition: box-shadow 0.2s;
}
.grid__reset:hover {
scale: 1.05;
}
.grid__reset:active {
scale: 0.95;
box-shadow: none;
}
.grid__container-row {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.grid__container-row-square {
flex: 1 1 auto;
}