-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
219 lines (182 loc) · 4.12 KB
/
style.css
File metadata and controls
219 lines (182 loc) · 4.12 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* Default Light Mode Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4; /* Light background */
color: #333; /* Dark text color */
}
header {
background-color: #0b0b0c;
color: white;
padding: 20px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #0a0c0e;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 18px;
}
nav a:hover {
text-decoration: underline;
}
.container {
padding: 20px;
}
.section {
margin-bottom: 20px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #003d80;
color: white;
position: relative;
bottom: 0;
width: 100%;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #003d80;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
}
.button:hover {
background-color: #a1c4fd;
}
/* Dark Mode Styles */
body.dark-mode {
background-color: #333; /* Dark background */
color: #000000; /* Black font on white box */
}
header.dark-mode {
background-color: #000; /* Black background for header */
color: rgb(245, 237, 237); /* White text color for header */
}
header.dark-mode h1, header.dark-mode p {
color: white; /* Ensure header text is white in dark mode */
}
nav.dark-mode {
background-color: #222; /* Dark nav background */
}
nav.dark-mode a {
color: #ccc; /* Light text in nav */
}
nav.dark-mode a:hover {
text-decoration: underline;
color: #fff; /* Hover color for links */
}
.container.dark-mode {
background-color: #444; /* Dark background for the container */
}
.section.dark-mode {
background-color: #333; /* Dark background for each section */
color: white; /* Light text in each section */
}
footer.dark-mode {
background-color: #222; /* Dark footer background */
}
.button.dark-mode {
background-color: #555; /* Dark background for buttons */
}
.button.dark-mode:hover {
background-color: #010814; /* Lighter color on hover */
}
.banner {
text-align: center;
margin: 20px 0;
position: relative;
}
.banner-container {
position: relative;
display: inline-block;
}
.banner img {
max-width: 80%;
height: auto; /* better for responsiveness */
border-radius: 10px;
display: block;
}
/* Dark overlay for better text visibility */
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4); /* 40% dark overlay */
border-radius: 10px;
}
.banner-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: 'Poppins', sans-serif;
text-align: center;
z-index: 1; /* Makes sure it's above the overlay */
}
.banner-text h2 {
font-size: 2.5rem;
font-weight: 600;
}
.banner-text p {
font-size: 1.2rem;
margin: 5px 0;
}
.banner-text .subtext {
font-size: 1rem;
opacity: 0.9;
}
.features {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
padding: 40px;
}
.feature-card {
background: white;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
padding: 20px;
max-width: 300px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}
.feature-card img {
width: 100px;
height: auto;
margin-bottom: 15px;
}
.feature-card h3 {
font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
margin-bottom: 10px;
}
.feature-card p {
font-size: 1rem;
color: #555;
}
/* Hover effect */
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}