-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylea.css
More file actions
50 lines (42 loc) · 676 Bytes
/
stylea.css
File metadata and controls
50 lines (42 loc) · 676 Bytes
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
html, body {
height: 100%;
margin: 0;
}
body {
display: flex;
flex-direction: column;
font-family: Arial, sans-serif;
}
header {
background-color: navy;
color: white;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 30px;
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}
.nav-links a {
color: white;
text-decoration: none;
}
.nav-links a:hover {
text-decoration: underline;
}
main {
flex: 1;
padding: 30px;
text-align: center;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 12px 0;
}