-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
54 lines (47 loc) · 795 Bytes
/
styles.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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: whitesmoke;
}
body {
background-color: rgb(35, 35, 35);
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
header {
text-align: center;
line-height: 2;
}
p {
font-size: 1.1rem;
}
main {
margin: 1rem auto;
display: flex;
justify-content: center;
align-items: center;
gap: 0.6rem;
flex-wrap: wrap;
}
button {
padding: 1rem;
font-size: 1rem;
outline: none;
border: 2px solid whitesmoke;
border-radius: 5px;
background-color: transparent;
cursor: pointer;
font-weight: bold;
}
button:hover,
button:focus {
background-color: rgba(255, 255, 255, 0.21);
}
.hidden {
display: none;
}