-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
54 lines (44 loc) · 889 Bytes
/
main.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
@import url("https://fonts.googleapis.com/css2?family=Madimi+One&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: #145DA0;
color: white;
font-family: "Madimi One", sans-serif;
margin-top: 5rem;
text-align: center;
}
header{
font-size: xx-large;
}
#grid {
display: grid;
grid-template-columns: repeat(3, 10vmin);
grid-template-rows: repeat(3, 10vmin);
margin-top: 5vmin;
justify-content: center;
gap: 0.5vmin ;
}
#grid > div {
border: 0.5vmin solid black;
text-align: center;
justify-content: flex-end;
padding-top: 20%;
font-size: x-large;
}
h2 {
color: white;
}
button {
margin-top: 5rem;
font-family: "Madimi One", sans-serif;
background: white;
border-radius: 50%;
height: 5rem;
width: 5rem;
font-size: medium;
}
footer {
margin-top: 5rem;
}