-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
48 lines (41 loc) · 836 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.container {
display: grid;
grid-template-columns: repeat(5, 1fr);
}
.container div{
height: 92vh;
border: 1px solid;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* .btn {
text-align: center;
}
#reload {
font-size: 1.2rem;
padding: 10px 20px;
margin: 10px;
border: none;
border-radius: 10px;
background-color: chartreuse;
transition: all 0.4s;
}
#reload:hover {
cursor: pointer;
background-color: chocolate;
} */
footer {
padding: 20px;
}
footer p {
font-size: 1.4rem;
text-align: center;
}