Skip to content

Commit 86e45c3

Browse files
author
Constantin
committed
removed scss comment from css file
1 parent 16ca21f commit 86e45c3

File tree

1 file changed

+0
-42
lines changed

1 file changed

+0
-42
lines changed

src/css/swipebox.css

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
/* line 12, ../../sass/swipebox.scss */
21
#swipebox-overlay img {
32
border: none !important;
43
}
54

6-
/* line 16, ../../sass/swipebox.scss */
75
#swipebox-overlay {
86
width: 100%;
97
height: 100%;
@@ -17,7 +15,6 @@
1715
user-select: none;
1816
}
1917

20-
/* line 27, ../../sass/swipebox.scss */
2118
#swipebox-slider {
2219
height: 100%;
2320
left: 0;
@@ -27,7 +24,6 @@
2724
position: absolute;
2825
display: none;
2926
}
30-
/* line 36, ../../sass/swipebox.scss */
3127
#swipebox-slider .slide {
3228
background: url("../img/loader.gif") no-repeat center center;
3329
height: 100%;
@@ -36,15 +32,13 @@
3632
text-align: center;
3733
display: inline-block;
3834
}
39-
/* line 44, ../../sass/swipebox.scss */
4035
#swipebox-slider .slide:before {
4136
content: "";
4237
display: inline-block;
4338
height: 50%;
4439
width: 1px;
4540
margin-right: -1px;
4641
}
47-
/* line 52, ../../sass/swipebox.scss */
4842
#swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container {
4943
display: inline-block;
5044
max-height: 100%;
@@ -55,7 +49,6 @@
5549
height: auto;
5650
vertical-align: middle;
5751
}
58-
/* line 63, ../../sass/swipebox.scss */
5952
#swipebox-slider .slide .swipebox-video-container {
6053
background: none;
6154
max-width: 1140px;
@@ -66,15 +59,13 @@
6659
-webkit-box-sizing: border-box;
6760
-moz-box-sizing: border-box;
6861
}
69-
/* line 73, ../../sass/swipebox.scss */
7062
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
7163
width: 100%;
7264
height: 0;
7365
padding-bottom: 56.25%;
7466
overflow: hidden;
7567
position: relative;
7668
}
77-
/* line 79, ../../sass/swipebox.scss */
7869
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
7970
width: 100% !important;
8071
height: 100% !important;
@@ -83,7 +74,6 @@
8374
left: 0;
8475
}
8576

86-
/* line 92, ../../sass/swipebox.scss */
8777
#swipebox-action,
8878
#swipebox-caption {
8979
position: absolute;
@@ -93,19 +83,15 @@
9383
width: 100%;
9484
}
9585

96-
/* line 100, ../../sass/swipebox.scss */
9786
#swipebox-action {
9887
bottom: -50px;
9988
}
100-
/* line 103, ../../sass/swipebox.scss */
10189
#swipebox-action.visible-bars {
10290
bottom: 0;
10391
}
104-
/* line 107, ../../sass/swipebox.scss */
10592
#swipebox-action.force-visible-bars {
10693
bottom: 0 !important;
10794
}
108-
/* line 113, ../../sass/swipebox.scss */
10995
#swipebox-action #swipebox-prev,
11096
#swipebox-action #swipebox-next,
11197
#swipebox-action #swipebox-close {
@@ -119,145 +105,119 @@
119105
height: 50px;
120106
top: 0;
121107
}
122-
/* line 125, ../../sass/swipebox.scss */
123108
#swipebox-action #swipebox-prev {
124109
background-position: -32px 13px;
125110
right: 100px;
126111
}
127-
/* line 130, ../../sass/swipebox.scss */
128112
#swipebox-action #swipebox-next {
129113
background-position: -78px 13px;
130114
right: 40px;
131115
}
132-
/* line 135, ../../sass/swipebox.scss */
133116
#swipebox-action #swipebox-close {
134117
background-position: 15px 12px;
135118
left: 40px;
136119
}
137-
/* line 142, ../../sass/swipebox.scss */
138120
#swipebox-action #swipebox-prev.disabled,
139121
#swipebox-action #swipebox-next.disabled {
140122
opacity: 0.3;
141123
}
142124

143-
/* line 150, ../../sass/swipebox.scss */
144125
#swipebox-caption {
145126
top: -50px;
146127
text-align: center;
147128
}
148-
/* line 154, ../../sass/swipebox.scss */
149129
#swipebox-caption.visible-bars {
150130
top: 0;
151131
}
152-
/* line 158, ../../sass/swipebox.scss */
153132
#swipebox-caption.force-visible-bars {
154133
top: 0 !important;
155134
}
156135

157-
/* line 163, ../../sass/swipebox.scss */
158136
#swipebox-slider.rightSpring {
159137
-moz-animation: rightSpring 0.3s;
160138
-webkit-animation: rightSpring 0.3s;
161139
}
162140

163-
/* line 168, ../../sass/swipebox.scss */
164141
#swipebox-slider.leftSpring {
165142
-moz-animation: leftSpring 0.3s;
166143
-webkit-animation: leftSpring 0.3s;
167144
}
168145

169146
@-moz-keyframes rightSpring {
170-
/* line 174, ../../sass/swipebox.scss */
171147
0% {
172148
margin-left: 0px;
173149
}
174150

175-
/* line 178, ../../sass/swipebox.scss */
176151
50% {
177152
margin-left: -30px;
178153
}
179154

180-
/* line 182, ../../sass/swipebox.scss */
181155
100% {
182156
margin-left: 0px;
183157
}
184158
}
185159

186160
@-moz-keyframes leftSpring {
187-
/* line 188, ../../sass/swipebox.scss */
188161
0% {
189162
margin-left: 0px;
190163
}
191164

192-
/* line 192, ../../sass/swipebox.scss */
193165
50% {
194166
margin-left: 30px;
195167
}
196168

197-
/* line 196, ../../sass/swipebox.scss */
198169
100% {
199170
margin-left: 0px;
200171
}
201172
}
202173

203174
@-webkit-keyframes rightSpring {
204-
/* line 202, ../../sass/swipebox.scss */
205175
0% {
206176
margin-left: 0px;
207177
}
208178

209-
/* line 206, ../../sass/swipebox.scss */
210179
50% {
211180
margin-left: -30px;
212181
}
213182

214-
/* line 210, ../../sass/swipebox.scss */
215183
100% {
216184
margin-left: 0px;
217185
}
218186
}
219187

220188
@-webkit-keyframes leftSpring {
221-
/* line 216, ../../sass/swipebox.scss */
222189
0% {
223190
margin-left: 0px;
224191
}
225192

226-
/* line 220, ../../sass/swipebox.scss */
227193
50% {
228194
margin-left: 30px;
229195
}
230196

231-
/* line 224, ../../sass/swipebox.scss */
232197
100% {
233198
margin-left: 0px;
234199
}
235200
}
236201

237202
@media screen and (max-width: 800px) {
238-
/* line 230, ../../sass/swipebox.scss */
239203
#swipebox-action #swipebox-close {
240204
left: 0;
241205
}
242206

243-
/* line 234, ../../sass/swipebox.scss */
244207
#swipebox-action #swipebox-prev {
245208
right: 60px;
246209
}
247210

248-
/* line 238, ../../sass/swipebox.scss */
249211
#swipebox-action #swipebox-next {
250212
right: 0;
251213
}
252214
}
253215
/* Skin
254216
--------------------------*/
255-
/* line 245, ../../sass/swipebox.scss */
256217
#swipebox-overlay {
257218
background: #0d0d0d;
258219
}
259220

260-
/* line 250, ../../sass/swipebox.scss */
261221
#swipebox-action,
262222
#swipebox-caption {
263223
text-shadow: 1px 1px 1px black;
@@ -270,12 +230,10 @@
270230
opacity: 0.95;
271231
}
272232

273-
/* line 256, ../../sass/swipebox.scss */
274233
#swipebox-action {
275234
border-top: 1px solid rgba(255, 255, 255, 0.2);
276235
}
277236

278-
/* line 260, ../../sass/swipebox.scss */
279237
#swipebox-caption {
280238
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
281239
color: white !important;

0 commit comments

Comments
 (0)