-
Notifications
You must be signed in to change notification settings - Fork 0
/
galleryStyles.css
147 lines (131 loc) · 2.95 KB
/
galleryStyles.css
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
/* galleryStyles.css */
/* Стилі для модального вікна */
#mediaModal {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
display: none;
}
/* Обгортка для контенту в модальному вікні */
#mediaModal .contentWrapper {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
/* Кнопка закриття */
#mediaModal .closeButton {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 30px;
cursor: pointer;
}
/* Іконка серця */
#heart_icon {
position: absolute;
top: 10px;
left: 20px;
color: red;
font-size: 30px;
cursor: pointer;
}
/* Стилі для елементів зображення та відео */
#gallery_img,
#gallery_video {
display: none;
max-width: 100vw;
max-height: 100vh;
object-fit: contain;
margin: auto;
}
/* Стилі для навігаційних кнопок */
#mediaModal .navButton {
border: none;
background: transparent;
position: absolute;
color: white;
font-size: 50px;
cursor: pointer;
}
#mediaModal .prevButton {
left: 10px;
}
#mediaModal .nextButton {
right: 10px;
}
.paginator {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
justify-content: center;
gap: 20px; /* Відстань між кнопками і текстом */
font-size: 1vw !important;
font-weight: bold;
background-color: rgba(0, 0, 0, 0.5); /* Напівпрозорий фон */
color: rgb(255, 255, 255);
padding: 1vw 1vw !important;
border-radius: 10px;
}
/* Стиль для кнопки переходу до першого елементу */
#mediaModal .firstButton {
position: absolute;
bottom: 25px;
left: 30%;
border: none;
background: transparent;
color: white;
font-size: 30px;
cursor: pointer;
}
/* Стиль для кнопки переходу до останнього елементу */
#mediaModal .lastButton {
position: absolute;
bottom: 25px;
right: 30%;
border: none;
background: transparent;
color: white;
font-size: 30px;
cursor: pointer;
}
.paginator button:hover {
background-color: #45a049;
}
/* Стилі для кнопки toggle_controls */
#toggle_controls {
position: absolute;
top: 10px;
left: 60px; /* Розташування поруч із heartIcon */
color: white;
font-size: 30px;
cursor: pointer;
z-index: 1;
}
.hidden-controls {
opacity: 0;
transition: all 0.2s; /* Use a transition if you want */
}
.hidden-controls:hover {
opacity: 1;
}
#open_link {
position: absolute;
top: 10px;
left: 100px; /* розташування праворуч від кнопки toggle_controls */
color: white;
font-size: 30px;
cursor: pointer;
z-index: 1;
}