-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
449 lines (370 loc) · 8.59 KB
/
style.css
File metadata and controls
449 lines (370 loc) · 8.59 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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
@import url('https://fonts.cdnfonts.com/css/waterfall');
@import url('https://fonts.cdnfonts.com/css/cormorant-garamond');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #ddceb9;
text-align: center;
margin: 0;
padding: 0;
min-height: 100vh;
font-family: 'Cormorant Garamond', sans-serif;
}
body.home {
transform: translateY(-100vh); /* Move the content down by the height of the viewport */
transition: transform 0.5s ease-in-out; /* Add transition properties */
}
.home-page {
background-image: url("https://r4.wallpaperflare.com/wallpaper/449/233/264/danish-painter-1913-peter-merk-of-menstad-peder-m%C3%B8rk-m%C3%B8nsted-wallpaper-e816bcbabf9c8739ee4019d282895b30.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed; /* Keeps the background fixed */
display: flex;
flex-direction: column;
justify-content: space-between; /* Push content to the top and bottom */
min-height: 100vh;
}
.home-main-content {
width: 90%;
max-width: 1200px;
margin: 0 auto; /* Center horizontally */
background-color: #ddceb9;
text-align: center;
}
.home-content {
background-color: #ddceb9;
}
#index-page {
font-family: 'Waterfall', sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.index-page {
background-image: url("https://r4.wallpaperflare.com/wallpaper/449/233/264/danish-painter-1913-peter-merk-of-menstad-peder-m%C3%B8rk-m%C3%B8nsted-wallpaper-e816bcbabf9c8739ee4019d282895b30.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed; /* Keeps the background fixed */
display: flex;
justify-content: center;
align-items: flex-end; /* Align to the bottom */
height: 100vh; /* Take up full viewport height */
overflow-y: hidden;
overflow-x: hidden;
}
#start-page {
background-color: #ddceb9;
display: flex;
justify-content:center;
align-items:center;
height: 80vh; /* This ensures it takes up the full viewport height */
width: 90vh; /* This ensures it takes up the full viewport height */
border-radius:100px 100px 0px 0px;
border: 5px solid #bdac94;
opacity: 95%;
}
.start-title {
font-family: 'Waterfall', sans-serif;
font-size: 10rem;
text-align: center;
margin-bottom: 20px;
color: #d4918f;
text-shadow: 2px 2px 4px #45423b;
}
.site-title {
font-family: 'Waterfall', sans-serif;
text-align: center;
margin-bottom: 40px;
color: #ede4d8;
font-size: 60px;
text-shadow: 2px 2px 4px #45423b;
}
a {
text-decoration: none;
color: #fff9f4;
}
h2{
color: #5d5447;
}
header {
display: flex;
flex-direction: column;
align-items: center;
background-color: #e9d6af;
padding: 20px;
text-align: center;
}
button {
position: relative;
margin: auto;
padding: 12px 18px;
transition: all 0.2s ease;
border: none;
background: none;
}
button:before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
border-radius: 50px;
background: #949b8a;
width: 45px;
height: 45px;
transition: all 0.3s ease;
}
button span {
position: relative;
font-size: 18px;
font-weight: 700;
letter-spacing: 0.05em;
color: #ffefe1;
}
button svg {
position: relative;
top: 0;
margin-left: 10px;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
stroke: #fff9f4;
stroke-width: 2;
transform: translateX(-5px);
transition: all 0.3s ease;
}
button:hover:before {
width: 100%;
background: #949b8a;
}
button:hover svg {
transform: translateX(0);
}
button:active {
transform: scale(0.95);
}
#start-page {
display: flex;
justify-content: center;
align-items: center;
}
img {
max-width: 400px;
margin: 20px;
}
.start-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
/* Style the sidebar */
.sidebar {
background-color: #ccb8a4;
padding: 20px;
width: 200px;
height: 100%;
position: fixed; /* Use fixed position */
top: 0; /* Stick to the top */
bottom: 0;
overflow-y: auto; /* Add scrolling for content exceeding the height */
}
.nav-menu {
list-style: none;
padding: 0;
}
.nav-menu li {
margin-bottom: 20px;
}
.nav-menu a {
text-decoration: none;
color: #5d5447;
font-weight: bold;
}
.container {
max-width: 1200px;
margin: 0;
padding: 20px;
}
.copy-right {
position: fixed;
bottom: 10px;
margin: 10px;
font-size: 16px;
opacity: 100%;
}
.section {
padding: 40px;
text-align: center;
}
.slideshow-container {
position: relative;
max-width: 100%;
margin-top: 20px;
}
.mySlides {
display: none;
text-align: center;
}
.mySlides img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
/* Add styles for slideshow controls */
a.prev, a.next {
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
padding: 16px;
color: #fff;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
text-decoration: none;
font-size: 24px;
}
a.next {
right: 0;
}
/* Add animation for slideshow */
.fade {
animation-name: fade;
animation-duration: 2s;
}
@keyframes fade {
0% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}
.about-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.about-text {
max-width: 600px;
margin-bottom: 40px;
color: #5d5447;
font-size: 20px;
text-align: justify;
}
.profile-image {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
/* Update the CSS for the gallery grid to have two columns and move it to the right */
.gallery-preview-container {
display: grid;
grid-template-columns: repeat(1, 1fr); /* Two columns with equal width */
}
/* Rest of the gallery CSS remains the same */
.gallery-item {
overflow: hidden;
}
.gallery-item img {
width: 600px;
transition: transform 0.2s ease-in-out;
}
.gallery-item:hover img {
transform: scale(1.05);
}
/* Style the contact section */
#contact {
text-align: center;
background-color: #e6ddd2;
padding: 40px;
}
.contact-info {
margin-top: 20px;
}
.contact-info p {
font-size: 18px;
margin-bottom: 10px;
}
.contact-info ul {
list-style-type: none;
padding: 0;
}
.contact-info li {
margin: 10px;
display: inline;
}
.contact-info a {
text-decoration: none;
color: #866572; /* Twitter blue color */
font-weight: bold;
transition: color 0.3s ease;
}
.contact-info a:hover {
color: #e0c0cb; /* Instagram pink color */
}
/* Add responsive styles */
@media (max-width: 768px) {
.index-page {
width: 100%;
opacity: 95%;
}
.index-page img {
width: 50%;
}
.start-title {
text-align: center;
font-size: 90px;
}
/* Copyright Section */
.copy-right {
display: flex;
justify-content: center; /* Align items horizontally in the center */
align-items: center; /* Align items vertically in the center */
font-size: 12px;
opacity: 0.6; /* Adjust opacity as needed */
position: relative;
}
/* Navigation Menu */
.nav-menu {
text-align: center;
}
.nav-menu li {
display: inline-block; /* Display list items side by side */
margin-right: 10px; /* Add some space between items */
}
.nav-menu li:last-child {
margin-right: 0; /* Remove margin for the last item */
}
/* Sections */
.section {
padding: 20px;
}
/* Sidebar */
.sidebar {
width: 100%;
height: auto;
position: relative;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
padding: 20px;
}
img {
max-width: 100%; /* Adjust image width for smaller screens */
}
#gallery-preview {
margin: 0;
padding: 0;
}
}