-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
56 lines (48 loc) · 847 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
55
56
body {
padding: 0;
margin: 0;
line-height: 1.4em;
}
header {
border-bottom: 1px solid lightgray;
& a {
text-decoration: none;
color: green;
}
& h1 {
margin-left: 40px;
font-size: min(7vw, 2.5em);
}
}
footer {
border-top: 1px solid lightgray;
display: flex;
justify-content: center;
padding-block: 20px;
& ul {
display: flex;
gap: 20px;
list-style-type: none;
padding: 0;
margin: 0;
}
}
.claim {
font-size: 1.5em;
font-weight: normal;
line-height: 1.4em;
border-left: 4px solid green;
padding-left: 20px;
}
body {
font-family: sans-serif;
display: flex;
align-items: center;
flex-direction: column;
}
header, footer {
width: 100%;
}
section {
width: min(80ch, 95%);
}