-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
60 lines (53 loc) · 942 Bytes
/
about.css
File metadata and controls
60 lines (53 loc) · 942 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
51
52
53
54
55
56
57
58
59
60
/* navigation bar */
nav ul {
list style type: none;
margin: 0;
padding: 0;
background-color: gold;
overflow: hidden;
display: flex;
justify-content: center;
border-bottom: 2px solid #2a3d66;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
display: block;
color: #2a3d66;
text-decoration: none;
padding: 14px 16px;
font-weight: bold;
background-color: gold;
transition: all 0.3s ease;
}
nav ul li a:hover {
background-color: #2a3d66;
color: gold;
border-radius: 5px;
}
.image{
display:flex;
flex-direction:row-reverse;
justify-content:space-between;
}
.image img{
max-width: 40%;/*Adjust as needed*/
}
body{
font-famiy: Times New Roman, sans-serif;
background-color: #F0F0F0;
margin: 0;
padding: 0;
}
/* Footer */
footer{
background-color: gold;
text-align: center;
padding: 10px;
position: relative;
width: 100%;
bottom: 0;
margin-top: 20px;
}