-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (62 loc) · 1.09 KB
/
index.css
File metadata and controls
72 lines (62 loc) · 1.09 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
header {
padding: 15px;
color: blue;
background-color: yellow;
gap: 12px;
display: flex;
}
.brand {
font-size: 35pt;
color: blue;
background-color: yellow;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
margin: 0;
padding: 6px 10px;
display: inline-block;
width: fit-content;
}
main {
display: flex;
gap: 24px;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 15px;
padding: 6px 10px;
}
a {
font-size: 25pt;
font-family: fantasy;
}
ul {
display: flex;
flex-direction: column;
gap: 15px;
justify-content: space-around;
display: inline-block;
}
li {
color: red;
background-color: black;
font-size: 25pt;
padding: 15px;
margin: 5px;
display: flex;
flex-direction: column;
gap: 15px;
border: solid brown 1px;
border-radius: 10px;
}
article {
font-size: 20pt;
}
blockquote {
background-color: lightblue;
}
footer {
background-color: aqua;
display: inline-block;
font-size: 15pt;
}