-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
60 lines (50 loc) · 872 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
html, body {
height: 100vh;
}
body {
margin: 0;
background-color: rgb(70, 70, 70);
}
#container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#main {
display: flex;
align-items: center;
}
.menu {
display: flex;
flex-direction: column;
justify-content: space-between;
padding-right: 20px;
gap: 10px;
}
.menu button{
font-size: 20px;
font-weight: bold;
padding: 5px 15px 5px 15px;
border-radius: 10px;
}
.menu button:hover {
background-color: rgb(119, 0, 199);
}
.menu button:active {
background-color: orange;;
}
.grid-container {
display: grid;
width: 600px;
height: 600px;
border: 2px solid blueviolet;
}
.grid-item {
background-color: #ffffff;
}
#gridStatus {
font-style: bold;
color: orange;
text-align: center;
}