-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (50 loc) · 956 Bytes
/
style.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
61
62
* {
background-color: gainsboro;
}
img {
height: 500px;
border: 10px solid red;
}
p, li {
font-family: Arial, Helvetica, sans-serif;
color:white;
}
.nav-list {
display: flex;
/* flex-wrap == flex-items are allowed to wrap, preventing overflow when shrinking */
flex-wrap: wrap;
gap: 1rem;
/* to help visualise */
border: solid rgb(87, 26, 157) 5px;
margin: 0;
padding: 0;
list-style: none;
}
.nav-list li {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
/* flex-grow: 0;
flex-shrink: 1; */
/* to help visualise */
border: red solid 3px;
}
.title {
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 50px;
color: #BF616A;
}
.title2, .title3, .title4 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.title2 {
font-size: 30px;
color: #EBCB8B;
}
.title3 {
font-size: 25px;
color: #A3BE8C;
}
.title4 {
font-size: 20px;
color: #B48EAD;
}