-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
61 lines (52 loc) · 964 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
height: 100vh;
background-color: red;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 2%;
}
header {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 1rem;
}
h1 {
color: white;
}
.grid-dimensions {
color: white;
}
.button-container {
display: flex;
justify-content: center;
align-items: center;
gap: 5%;
}
.clear-button, .reset-button {
border: 2px solid black;
padding: 0.5rem 0.5rem;
border-radius: 5px;
background: white;
}
.clear-button:hover, .reset-button:hover {
background-color: lightgray;
}
.grid-container {
display: grid;
height: 70%;
width: 70%;
justify-content: center;
border: 2px solid black;
border-radius: 10px;
background-color: white;
}