forked from AsiyaYakhina/asiyayakhina.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponents.html
383 lines (380 loc) · 21.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Aurora</title>
<!-- CSS -->
<!-- Bootstrap core CSS -->
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Font Awesome CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" media="screen">
<!-- Elegant icons CSS -->
<link href="assets/css/simple-line-icons.css" rel="stylesheet" media="screen">
<!--[if lte IE 7]>
<script src="assets/js/icons-lte-ie7.js"></script>
<![endif]-->
<!-- Magnific-popup lightbox -->
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<!-- Owl Carousel -->
<link href="assets/css/owl.theme.css" rel="stylesheet">
<link href="assets/css/owl.carousel.css" rel="stylesheet">
<!-- Animate css -->
<link href="assets/css/animate.css" rel="stylesheet">
<!-- Custom styles CSS -->
<link href="assets/css/style.css" rel="stylesheet" media="screen">
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div id="status">
<div class="status-mes"></div>
</div>
</div>
<!-- Home start -->
<section id="home" class="module-image js-height-full">
<div class="intro">
<h1>Components</h1>
<div class="who-creates">Bootstrap components</div>
</div>
<div class="mouse-icon">
<div class="wheel"></div>
</div>
</section>
<!-- Home end -->
<!-- Navigation start -->
<header class="header">
<nav class="navbar navbar-custom" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#custom-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">John Doe</a>
</div>
<div class="collapse navbar-collapse" id="custom-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
UI Elements <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="icons.html">Icons</a></li>
<li><a href="components.html">Components</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Navigation end -->
<!-- Components start -->
<section class="module">
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- Headings -->
<h6 class="text-muted long-down">Headings</h6>
<h1>h1. Bootstrap heading</h1>
<h2>h2. Bootstrap heading</h2>
<h3>h3. Bootstrap heading</h3>
<h4>h4. Bootstrap heading</h4>
<h5>h5. Bootstrap heading</h5>
<h6>h6. Bootstrap heading</h6>
<hr>
<!-- Typography -->
<h6 class="text-muted long-down">Typography</h6>
<p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
<hr>
<!-- Blockquote -->
<h6 class="text-muted long-down">Blockquote</h6>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer>Someone famous in
<cite title="Source Title">Source Title</cite>
</footer>
</blockquote>
<hr>
<!-- Buttons -->
<h6 class="text-muted long-down">Buttons custom</h6>
<p class="btn-list">
<button type="button" class="btn btn-custom-1">btn-custom-1</button>
<button type="button" class="btn btn-custom-2">btn-custom-2</button>
<br/>
<button type="button" class="btn btn-custom-3">btn-custom-3</button>
<button type="button" class="btn btn-custom-4">btn-custom-4</button>
</p>
<hr>
<h6 class="text-muted long-down">Buttons</h6>
<p class="btn-list">
<button type="button" class="btn btn-default">Default</button>
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-link">Link</button>
</p>
<p class="btn-list">
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-success">Default button</button>
<button type="button" class="btn btn-info btn-sm">Small button</button>
<button type="button" class="btn btn-warning btn-xs">Extra small button</button>
</p>
<p>
<button type="button" class="btn btn-primary">
<i class="icon-before fa fa-chevron-left"></i>Icon before
</button>
<button type="button" class="btn btn-primary">
Icon after<i class="icon-after fa fa-chevron-right"></i>
</button>
</p>
<hr>
<h6 class="text-muted long-down">Input groups</h6>
<p>
<div class="input-group">
<input type="text" class="form-control" placeholder="Input group">
<span class="input-group-btn">
<button type="submit" class="btn btn-custom-2">Input group</button>
</span>
</div>
</p>
<p>
<div class="input-group">
<input type="text" class="form-control" placeholder="Input group">
<span class="input-group-btn">
<button type="submit" class="btn btn-primary">Input group</button>
</span>
</div>
</p>
<p>
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="text" class="form-control" placeholder="Input group">
</div>
</p>
<p>
<div class="input-group">
<input type="text" class="form-control" placeholder="Input group">
<span class="input-group-addon"><i class="fa fa-cog"></i></span>
</div>
</p>
<hr>
<!-- Labels -->
<h6 class="text-muted long-down">Labels</h6>
<p>
<span class="label label-custom-1">Custom one</span>
<span class="label label-custom-2">Custom two</span>
<span class="label label-default">Default</span>
<span class="label label-primary">Primary</span>
<span class="label label-success">Success</span>
<span class="label label-info">Info</span>
<span class="label label-warning">Warning</span>
<span class="label label-danger">Danger</span>
</p>
<hr>
<!-- Modal Demo -->
<h6 class="text-muted long-down">Modal Demo</h6>
<p>
<!-- Button trigger modal -->
<button class="btn btn-info " data-toggle="modal" data-target="#myModal">Demo modal</button>
</p>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
<hr>
<!-- Alerts -->
<h6 class="text-muted long-down">Alerts</h6>
<div class="alert alert-success">
<strong>Well done!</strong> You successfully read this important alert message.
</div>
<div class="alert alert-info">
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
</div>
<div class="alert alert-warning">
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>
<div class="alert alert-danger long">
<strong>Oh snap!</strong> Change a few things up and try submitting again.
</div>
</div>
<!-- .col-md -->
<div class="col-lg-6">
<!-- Progress Bars -->
<h6 class="text-muted long-down">Progress Bars</h6>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
40%
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
60%
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%;">
80%
</div>
</div>
<hr>
<!-- Tabs -->
<h6 class="text-muted long-down">Tabs</h6>
<!-- Nav tabs -->
<ul class="nav nav-tabs">
<li class="active"><a href="#tab1" data-toggle="tab">Home</a></li>
<li><a href="#tab1" data-toggle="tab">Profile</a></li>
<li><a href="#tab2" data-toggle="tab">Messages</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content long-down">
<div class="tab-pane active" id="tab1">Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</div>
<div class="tab-pane" id="tab2">Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</div>
<div class="tab-pane" id="tab3">Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth.</div>
</div>
<!-- Nav tabs -->
<ul class="nav nav-pills">
<li class="active"><a href="#tab1" data-toggle="tab">Home</a></li>
<li><a href="#tab11" data-toggle="tab">Profile</a></li>
<li><a href="#tab22" data-toggle="tab">Messages</a></li>
<li><a href="#tab33" data-toggle="tab">Contact</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content long">
<div class="tab-pane active" id="tab11">Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</div>
<div class="tab-pane" id="tab22">Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</div>
<div class="tab-pane" id="tab33">Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth.</div>
</div>
<hr>
<!-- Accordions -->
<h6 class="text-muted long-down">Accordions</h6>
<div class="panel-group long" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
Collapsible Group Item #1
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
Collapsible Group Item #2
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
Collapsible Group Item #3
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
<hr>
<!-- Forms -->
<h6 class="text-muted long-down">Forms</h6>
<div class="form-group">
<input class="form-control input-lg" type="text" placeholder=".input-lg">
</div>
<div class="form-group">
<input class="form-control" type="text" placeholder="Default input">
</div>
<div class="form-group">
<input class="form-control input-sm" type="text" placeholder=".input-sm">
</div>
<hr>
<!-- Responsive embed -->
<h6 class="text-muted long-down">Responsive embed</h6>
<iframe width="420" height="250" src="//www.youtube.com/embed/zpOULjyy-n8?rel=0" frameborder="0" allowfullscreen></iframe>
</div>
<!-- .col-md -->
</div>
<!-- .row -->
</div>
<!-- .container -->
</section>
<!-- Components end -->
<!-- Footer start -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-sm-12">
<p class="copyright">
© 2014 Aurora, All Rights Reserved.
</p>
</div>
</div>
<!-- .row -->
</div>
<!-- .container -->
</footer>
<!-- Footer end -->
<!-- Scroll-up -->
<div class="scroll-up">
<a href="#home"><i class="fa fa-angle-double-up"></i></a>
</div>
<!-- Javascript files -->
<script src="assets/js/jquery-1.11.1.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<script src="assets/js/jquery.parallax-1.1.3.js"></script>
<script src="assets/js/imagesloaded.pkgd.js"></script>
<script src="assets/js/jquery.shuffle.min.js"></script>
<script src="assets/js/twitterFetcher_min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/jquery.fitvids.js"></script>
<script src="assets/js/jquery.sticky.js"></script>
<script src="assets/js/smoothscroll.js"></script>
<script src="assets/js/wow.min.js"></script>
<!-- Google Maps -->
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="assets/js/gmaps.js"></script>
<!-- Custom scripts -->
<script src="assets/js/custom.js"></script>
<script src="assets/js/custom-shuffle-init.js"></script>
</body>
</html>