-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
132 lines (111 loc) · 1.94 KB
/
index.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* General Styles */
body {
font-family: 'Cambria', serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
a {
text-decoration: none;
color: inherit;
}
h1, h2 {
margin: 0;
font-weight: normal;
}
/* Header Styles */
header {
background-color: #0044cc;
color: white;
padding: 20px;
text-align: center;
}
header h1 a {
font-size: 2.5rem;
color: #fff;
}
/* Navigation Styles */
nav {
margin-top: 20px;
background-color: #003366;
padding: 10px;
}
.nav-menu {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
}
.nav-menu li {
margin: 0 20px;
}
.nav-menu a {
color: white;
font-size: 1.1rem;
}
.nav-menu a:hover {
color: #ffcc00;
}
/* Main Content Styles */
main {
padding: 40px 20px;
text-align: center;
}
section {
background-color: white;
padding: 30px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
margin: 0 auto;
max-width: 800px;
}
h2 {
color: #0044cc;
font-size: 2rem;
margin-bottom: 20px;
}
p {
font-size: 1.2rem;
color: #1b1b1b;
}
.actions {
margin-top: 20px;
}
.btn {
background-color: #0044cc;
color: white;
padding: 10px 20px;
border-radius: 5px;
font-size: 1rem;
margin: 10px;
}
.btn:hover {
background-color: #003366;
}
/* Logged-in User Styles */
.logged-in p {
font-size: 1.2rem;
color: #0044cc;
}
.actions .btn {
background-color: #00cc44;
}
.actions .btn:hover {
background-color: #008c29;
}
/* Footer Styles */
footer {
background-color: #003366; /* Dark blue background */
color: #f8f9fa; /* Light gray text for better contrast */
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
font-size: 0.9rem; /* Slightly smaller font for subtlety */
}
footer p {
margin: 0;
color: #ffffff; /* White text for maximum contrast */
}