-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery-simple.css
More file actions
101 lines (88 loc) · 1.92 KB
/
Copy pathgallery-simple.css
File metadata and controls
101 lines (88 loc) · 1.92 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
/* SCREENSHOT GALLERY - Layout only, modal styles are in styles.css */
/* Gallery Container */
.image-gallery-container {
max-width: 1400px;
margin: 0 auto;
padding: 3rem 1.5rem;
text-align: center;
}
.gallery-title {
font-size: 2.5rem;
color: #ffffff;
margin-bottom: 1rem;
background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff6b35 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gallery-subtitle {
color: #cccccc;
font-size: 1.1rem;
margin-bottom: 2.5rem;
}
/* Grid Layout */
.image-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
/* Image Card */
.image-card {
background: #0a0a0a;
border: 1px solid rgba(0, 255, 136, 0.15);
border-left: 2px solid #00ff88;
padding: 4px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border-radius: 12px;
}
.image-card img {
width: 100%;
height: auto;
display: block;
transition: all 0.3s ease;
border-radius: 8px;
}
.image-card iframe {
width: 100%;
pointer-events: none;
}
.image-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0, 255, 136, 0.15);
border-left-color: #00d4ff;
}
.image-card:hover img {
opacity: 0.85;
transform: scale(1.01);
}
/* Featured card */
.image-card.featured {
border-left-color: #00d4ff;
border-left-width: 3px;
}
/* Image Overlay */
.image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.65);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
border-radius: 8px;
}
.image-card:hover .image-overlay {
opacity: 1;
}
.zoom-icon {
font-size: 2.5rem;
color: #00ff88;
}