-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
269 lines (227 loc) · 5.08 KB
/
Copy pathstyles.css
File metadata and controls
269 lines (227 loc) · 5.08 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
body h1,h2,h3,p {
font-family: sans-serif;
}
/* General Header Styling */
header {
height: 170px;
background: linear-gradient(360deg, #5900ff,rgb(173, 27, 8), #e30bff, rgb(224, 34, 65), rgb(14, 94, 214)); /* Instagram-inspired gradient */
color: white;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: -7.7px;
z-index: 1000;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.box {
display: flex;
margin-left: -100px;
}
.box .inner {
width: 250px;
height: 75px;
line-height: 70px;
font-size: 2em;
font-family: sans-serif;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
}
.box .inner:first-child {
background: rgba(247, 148, 19, 0.308);
color: darkred;
transform-origin: right;
transform: perspective(100px) rotateY(-15deg);
}
.box .inner:last-child {
background-color: rgba(247, 148, 19, 0.308);
color: antiquewhite;
transform-origin: left;
transform: perspective(100px) rotateY(15deg);
}
.box .inner span {
position: absolute;
animation: marquee 6s linear infinite;
}
.box .inner:first-child span {
animation-delay: 10ms;
left: 100%;
left: -100%;
}
@keyframes marquee {
from {
left: 100%;
}
to {
left: -100%;
}
}
/* Mobile adjustments */
@media (max-width: 767px) {
.box .inner span {
font-size: 1.5rem;
display: block;
}
.navbar-nav .nav-link {
font-size: 1rem;
}
}
h1 {
font-family: sans-serif;
font-size: 2rem;
font-weight: 700;
color: white;
letter-spacing: 2px;
text-transform: uppercase;
}
/* Navigation */
nav ul {
list-style: none;
display: flex;
gap: 40px;
align-items: center;
margin-left: -130px;
}
nav ul li {
display: inline;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 1.2rem;
font-weight: 600;
transition: color 0.3s ease;
white-space: nowrap;
}
nav ul li a:hover {
color: #00b0ff; /* Royal blue color for hover effect */
}
/* Search Bar */
.search-bar {
padding: 10px;
border-radius: 25px;
border: none;
width: 250px;
background-color: rgba(255, 255, 255, 0.7);
color: #333;
font-size: 1rem;
transition: width 0.3s ease, background-color 0.3s ease;
}
.search-bar:focus {
width: 300px;
background-color: rgba(255, 255, 255, 1);
outline: none;
}
/* Hero Section Styling */
.hero {
background: linear-gradient(#4e73df, #ff4081, #ff6f61, #9b59b6);
/*url('') center center / cover no-repeat*/ /* Example GIF */
border-top: 45px solid #fff;
color: purple;
text-align: center;
padding: 100px 20px;
position: relative;
background-attachment: fixed; /* Ensures background is fixed while scrolling */
}
.hero h2 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 3px;
color: #ffffff;
}
.hero p {
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 30px;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
}
.cta-button {
padding: 15px 30px;
background-color: #d261ff; /* Instagram-inspired red */
color: white;
font-size: 1.2rem;
font-weight: bold;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
background-color: #ff4081; /* Slightly brighter red for hover effect */
transform: translateY(-3px); /* Adds slight movement for interactivity */
}
#about {
background-color: #ffffff; /* Clean white background */
padding: 50px 20px;
text-align: center;
}
#about h2 {
font-size: 2.5rem;
font-weight: 700;
color: #ff4081; /* Instagram pink for consistency */
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}
#about p {
font-size: 1.2rem;
color: #333; /* Dark text for readability */
line-height: 1.6;
margin: 0 auto;
max-width: 800px; /* Limits the width for better readability */
padding: 10px 20px;
}
/* Footer Styling */
footer {
background-color: #333; /* Dark background for footer */
color: #fff; /* White text color for contrast */
padding: 40px 20px;
text-align: center;
font-size: 1rem;
}
footer p {
margin: 0;
font-weight: 400;
}
footer a {
color: #ff4081; /* Instagram pink for links */
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
footer a:hover {
color: #ffffff; /* Hover effect for links */
}
/* Social Links Styling */
.social-links {
margin-top: 20px;
}
.social-links a {
color: #ff4081; /* Pink social link color */
font-size: 1.2rem;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.social-links a:hover {
color: #ffffff; /* White hover color for social links */
}
/* Subtle Fade-in Animation */
@keyframes fadeInSection {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#about, footer {
animation: fadeInSection 1.5s ease-out;
}