-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
103 lines (89 loc) · 2.29 KB
/
styles.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* Base Styles */
html, body {
height: 100%; /* Ensure the body and html cover the entire screen height */
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4; /* Light background to keep everything readable */
color: #333;
line-height: 1.6;
font-size: 16px; /* Ensure base font size is the same across all pages */
}
/* Wrapper for the content */
.wrapper {
display: flex;
flex-direction: column;
min-height: 100vh; /* Full viewport height */
}
/* Section Styles for all pages */
section {
flex: 1;
padding: 40px; /* Same padding as other pages */
background-color: white;
margin: 20px auto;
max-width: 900px;
border-radius: 8px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Consistent shadow */
text-align: left;
}
/* Header Styles */
header {
text-align: center;
padding: 20px;
background: linear-gradient(90deg, #4A6FA5, #6F89C4); /* Muted cobalt blue gradient */
color: white;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
border-bottom: 4px solid #4A6FA5; /* Consistent muted cobalt blue border */
}
/* Logo Styles */
.logo {
width: 120px; /* Consistent logo size */
height: auto;
display: block;
margin: 0 auto; /* Center the logo */
}
/* Title and Subtitle */
header h1, subheader h2 {
margin: 0;
}
/* Navigation Styles */
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center; /* Center the nav items */
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 1.1em; /* Consistent font size for navigation */
padding: 8px 16px;
border-radius: 20px;
transition: background 0.3s, color 0.3s;
}
nav ul li a:hover {
background-color: white; /* Hover effect with muted cobalt blue text */
color: #4A6FA5;
}
/* Footer Styles */
footer {
background-color: #4A6FA5; /* Muted cobalt blue */
color: white;
text-align: center;
padding: 20px 0;
width: 100%;
box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1); /* Consistent footer shadow */
border-top: 4px solid #6F89C4; /* Border matching the muted cobalt blue */
position: relative;
bottom: 0;
}
footer p {
margin: 0;
}
footer p {
margin: 0;
}