blob: 1d412c10c315959c4b99aa93424ba6363d64073c (
plain)
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
|
/* Base layout and typography */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: auto;
max-width: 1000px;
padding: 20px;
}
h1 {
font-size: 48px;
margin-bottom: 30px;
}
h2 {
font-size: 1.5rem;
font-weight: 500;
color: #ffffff;
border-bottom: 1px solid #333;
margin-top: 40px;
padding-bottom: 8px;
}
/* Flexible, wrap-aligned image gallery */
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
align-items: flex-start;
}
/* Gallery item constrains to image width */
.gallery-item {
display: inline-block;
margin: 0;
box-sizing: border-box;
overflow: hidden;
vertical-align: top;
}
/* Image: fixed height, natural width */
.gallery-item img {
display: block;
height: 200px;
width: auto;
max-width: 100vw;
object-fit: cover;
transition: transform 0.2s ease-in-out;
}
/* Description: match image width */
.gallery-item p {
margin: 8px 0 0;
font-size: 0.85rem;
color: #aaaaaa;
line-height: 1.4;
max-width: 100%;
white-space: normal;
word-break: break-word;
overflow-wrap: break-word;
display: block;
}
/* Hover effect */
.gallery-item img:hover {
transform: scale(1.03);
}
/* Mobile: full width per row */
@media (max-width: 600px) {
body {
padding: 12px;
}
h2 {
font-size: 1.2rem;
}
.gallery {
flex-direction: column;
gap: 12px;
}
.gallery-item {
width: 100%;
}
.gallery-item img {
width: 100%;
height: auto;
//max-height: 300px;
}
.gallery-item p {
padding: 0 8px 8px;
}
}
|