-
Notifications
You must be signed in to change notification settings - Fork 0
/
components.html
401 lines (328 loc) · 20.9 KB
/
components.html
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
<!doctype html>
<html class="no-js">
<head>
<style>
.page-preloader {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: #fbfbfb;
z-index: 9999991005000;
}
.page-preloader .preloader-itself {
width: 110px;
height: 110px;
position: absolute;
left: 50%;
top: 50%;
background: url('preloader.gif') no-repeat 50% 50%;
margin: -55px 0 0 -55px;
}
</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Feldman</title>
<meta name="description" content="Barebones HTML project">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0, minimal-ui">
<!-- Favicon block -->
<!-- Images generated from a single 260x260 image by http://realfavicongenerator.net/ -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="favicon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#d10d3f">
<meta name="msapplication-TileImage" content="mstile-144x144.png">
<meta name="msapplication-config" content="browserconfig.xml">
<!-- / Favicon block -->
<link rel="stylesheet" href="styles/main.css">
<!-- Cached build -->
<script src="scripts/vendor/modernizr-2.8.3.min.js"></script>
<!-- /
<!-- -->
<style>
.page-preloader {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: #fff;
z-index: 9999991005000;
}
.page-preloader .preloader-itself {
width: 110px;
height: 110px;
position: absolute;
left: 50%;
top: 50%;
background: url('preloader.png') no-repeat 50% 50%;
margin: -55px 0 0 -55px;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name
: flash;
animation-name: flash;
-webkit-animation-duration: 5s;
animation-duration: 5s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
</style>
</head>
<body>
<div class="layout-header"><!-- THIS IS "layout/header.partial.html" BLOCK -->
<!--DROPDOWN-->
<div class="layout-container">
<div class="dropdown-block unclosable">
<div class="myDropdownBtn" id="myDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">DROPDOWN ME!</div>
<ul class="dropdown-menu myDropdown" aria-labelledby="myDropdown">
<li><a href="">Download.XLSX</a></li>
<li><a href="">Filter</a></li>
<li><a href="">Search</a></li>
<li class="myCollapse collapsed" role="button" data-toggle="collapse" href="#dropdownCollapse" aria-expanded="false" aria-controls="dropdownCollapse">
<a href=""><span class="colapse-link">Show all</span></a>
</li>
<div class="collapse myCollapse dropdown-collapse" id="dropdownCollapse" aria-expanded="false">
<ul>
<li><a href="">Successful</a></li>
<li><a href="">Test</a></li>
<div class="li-line"></div>
<li><a href="">Yesterday</a></li>
</ul>
</div>
</ul>
</div>
</div>
<!--DROPDOWN-END-->
</div> <!-- THIS IS "layout/header.partial.html" BLOCK END-->
<!--CAROUSEL-->
<section class="head-section">
<div class="head-wrap">
<div id="myCarousel" class="carousel slide carousel-top" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="container">
<div class="layout-container">
<div class="head-content">
<h1>Slide 1</h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="layout-container">
<div class="head-content">
<h1>Slide 2</h1>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet..</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="layout-container">
<div class="head-content">
<h1>Slide 3</h1>
<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="layout-container">
<div class="head-content">
<h1>Slide 4</h1>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet..</p>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control left" href="#myCarousel" role="button" data-slide="prev">
<span class="sr-only">Prev</span>
</a>
<a class="carousel-control right" href="#myCarousel" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
<div class="slide-background-wrap">
<div style="background-image: url('images/carousel-1300x700.jpg');
background-size: cover; background-position: bottom" class="slide-background active"></div>
<div style="background-image: url('images/carousel-1100x700.jpg');
background-size: cover; background-position: bottom" class="slide-background"></div>
<div style="background-image: url('images/carousel-1250x750.jpg');
background-size: cover; background-position: bottom" class="slide-background"></div>
<div style="background-image: url('images/carousel-1150x700.jpg');
background-size: cover; background-position: bottom" class="slide-background"></div>
</div>
</div>
</section>
<!--CAROUSEL-END-->
<div class="layout-content components-content">
<div class="layout-container">
<div class="row">
<!--TABS-->
<section class="tabs-section">
<h1>Tabs</h1>
<div class="main-tabs" role="tabpanel">
<ul role="tablist">
<li role="presentation" class="active">
<a href="#title1" aria-controls="title1" role="tab" data-toggle="tab">
title1
</a>
</li>
<li role="presentation" class="">
<a href="#title2" aria-controls="title2" role="tab" data-toggle="tab">
title2
</a>
</li>
<li role="presentation" class="">
<a href="#title3" aria-controls="title3" role="tab" data-toggle="tab">
title3
</a>
</li>
</ul>
</div>
<!--========================================-->
<div class="main-tabs tab-content">
<div class="tab-pane fade in active" role="tabpanel" id="title1">
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p>
</div>
<div class="tab-pane fade" role="tabpanel" id="title2">
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet..</p>
</div>
<div class="tab-pane fade" role="tabpanel" id="title3">
<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>
</div>
</div>
</section>
<!--TABS-END-->
<!--COLLAPSE-->
<section class="collapse-section">
<h1>Collapse</h1>
<div class="collapse-block">
<div class="collapse-item">
<a class="collapsed" role="button" data-toggle="collapse" href="#question1" aria-expanded="false" aria-controls="question1">
<h3>Collapse 1</h3> <span class="icon-collapse-arrow"></span>
</a>
<div class="collapse" id="question1">
<div class="well">
<p>Мы возмещаем ущерб если посылка была доставлена с задержкой, которая превышает неделю, товар испортился во время транспортировки или не соответствует вашему заказу. Во всех остальных случаях, возмещение ущерба не предусмотрено.</p>
</div>
</div>
</div>
<div class="collapse-item">
<a class="collapsed" role="button" data-toggle="collapse" href="#question2" aria-expanded="false" aria-controls="question2">
<h3>Collapse 2</h3> <span class="icon-collapse-arrow"></span>
</a>
<div class="collapse" id="question2">
<div class="well">
<p>Мы возмещаем ущерб если посылка была доставлена с задержкой, которая превышает неделю, товар испортился во время транспортировки или не соответствует вашему заказу. Во всех остальных случаях, возмещение ущерба не предусмотрено.</p>
</div>
</div>
</div>
</div>
</section>
<!--COLLAPSE-END-->
<!--FORM BLOCK-->
<section class="form-section">
<h1>Input Upload</h1>
<form action="" method="POST">
<div class="file-input-cont">
<input type="file" class="file-input" id="file-drop"/>
<label for="file-drop" class="file-label">Upload 1 file
<div class="img-container">
</div>
</label>
</div>
</form>
</section>
<!--FORM BLOCK END-->
</div><!--row-->
</div><!--layout-container-->
</div><!--layout-content-->
<div class="layout-footer">
<div class="footer-menu">
<ul>
<li><a href="">коллекция</a></li>
<li><a href="">выставки</a></li>
<li><a href="">наши проекты</a></li>
<li><a href="">издания</a></li>
<li><a href="">новости</a></li>
<li><a href="">патерны</a></li>
<li><a href="">контакты</a></li>
</ul>
</div>
<div class="social-links-block">
<a href="" class="social-item gold en"><i>V</i><i>k</i><i>o</i><i>n</i><i>t</i><i>a</i><i>k</i><i>t</i><i>e</i></a>
<a href="" class="social-item gold en"><i>F</i><i>a</i><i>c</i><i>e</i><i>b</i><i>o</i><i>o</i><i>k</i></a>
<a href="" class="social-item gold en"><i>I</i><i>n</i><i>s</i><i>t</i><i>a</i><i>g</i><i>r</i><i>a</i><i>m</i></a>
</div>
<div class="main-title wow"><span>КОНТАКТНАЯ ИНФОРМАЦИЯ</span></div>
<div class="footer-contacts">
<div class="contacts">
<div class="phone">Пресс-служба +38 057 731 27 30</div>
<div class="mail">[email protected]</div>
</div>
<div class="copyrights">© Feldmancollection. All Rights Reserved</div>
<div class="madeby">Site made with love by</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- -->
<script>window.jQuery || document.write('<script src="scripts/vendor/jquery-2.1.3.min.js"><\/script>')</script>
<!-- Cached build -->
<script src="scripts/main.min.js"></script>
<!-- /
<!-- -->
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<!-- <script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXX-X', 'auto');
ga('send', 'pageview');
</script> -->
</body>
</html>