-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 934 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
/* Set Vivaldi font for entire website */
body {
font-family: 'Vivaldi', cursive;
}
/* Set background image for entire website */
body {
background-image: url(images/pexels-photo-10924664.jpeg);
background-repeat: no-repeat;
background-size: cover;
}
/* Set title font size and color and center align */
header h1 {
font-size: 3em;
color: #fff;
text-align: center;
margin-top: 0px;
}
/* Set menu bar font size, color, and center align */
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #a1cf0a;
text-align: center;
}
nav li {
display: inline-block;
}
nav li a {
display: block;
color: white;
font-size: 1.8em;
padding: 10px 20px;
text-decoration: none;
}
nav li a:hover {
background-color: #057603;
}
/* Set paragraph font size and color */
main p {
font-size: 3.8em;
color: #057603f;
}