-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
60 lines (56 loc) · 929 Bytes
/
app.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
body {
padding: 2rem;
font-family: monospace;
background: #f3f3f3;
}
section {
text-align: center;
margin-top: 2rem;
padding-bottom: 8rem;
}
section h2 {
text-align: center;
color: #5982b8;
}
section .card {
background: #fff;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
}
section .card .name {
flex-basis: 100%;
font-weight: 600;
font-size: 18px;
}
.flex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
align-content: center;
gap: 30px;
}
button {
cursor: pointer;
background: #5982b8;
max-width: 200px;
padding: 10px;
border: 0;
text-transform: uppercase;
width: 100%;
border-radius: 5px;
letter-spacing: 0.03em;
font-size: 16px;
font-weight: 600;
color: #fff;
transition: 0.2s;
}
button:hover {
opacity: 0.8;
}
ul {
list-style: none;
padding: 0;
}/*# sourceMappingURL=app.css.map */