-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (40 loc) · 792 Bytes
/
styles.css
File metadata and controls
44 lines (40 loc) · 792 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
/* This is the navigation bar*/
nav {
background-color: #7fc4b2 (255, 0, 0, 0.4);
padding: 10px;
padding-left: 140px;
width: 100%;
box-sizing: border-box;
display: flex;
gap: 15px;
}
nav a {
color: #7170b4;
margin: 0 40px;
text-decoration: none;
font-weight: bold;
}
/* This is the navigation bar text changes*/
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: rgba(127, 196, 178, 0.5);
}
.logonotext {
width: 100px;
}
.hero {
padding: 50px;
}
.footer {
padding: 20px;
background-color: #f8f8f8;
}