-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (41 loc) · 877 Bytes
/
Copy pathstyles.css
File metadata and controls
47 lines (41 loc) · 877 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
/* Global Styles */
body {
font-family: Arial, sans-serif;
background-color: #e6f2ff; /* Light blue background */
color: #333;
margin: 0;
padding: 0;
}
/* Header Styles */
header {
background: #004080; /* Professional blue background */
color: #fff;
padding: 10px;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
padding: 5px 10px;
border-radius: 5px;
background-color: #0066cc; /* Button color */
transition: background-color 0.3s ease;
}
nav ul li a:hover {
background-color: #004080; /* Darker button color on hover */
}
/* Footer Styles */
footer {
background: #004080; /* Professional blue background */
color: #fff;
text-align: center;
padding: 10px;
}