-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (46 loc) · 883 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
body {
margin: 0;
font-family: Arial, sans-serif;
background-image: url('background.jpg');
background-size: cover;
background-position: center;
}
.container {
width: 80%;
margin: 0 auto;
padding: 1em;
}
header {
background-color: #007bff;
color: white;
}
nav ul {
list-style-type: none;
padding: 0;
display: flex;
justify-content: space-between;
}
nav ul li {
margin-right: 1em;
}
nav ul a {
color: white;
text-decoration: none;
}
nav ul ul {
display: none;
position: absolute;
background-color: #007bff;
}
nav ul li:hover > ul {
display: block;
}
main {
padding: 2em 0;
}
footer {
background-color: #007bff;
color: white;
text-align: center;
padding: 1em 0;
}