-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (98 loc) · 4.24 KB
/
index.html
File metadata and controls
115 lines (98 loc) · 4.24 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html class="no-js" lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Asta Carousel v 0.1.0-alpha</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/pure-min.css">
<link rel="stylesheet" href="css/main.css">
<style type="text/css" media="screen">
.asta-carousel__dots {
padding: 10px;
text-align: center;
font-size: 0;
}
.asta-carousel__dot {
display: inline-block;
vertical-align: top;
width: 20px;
height: 20px;
border-radius: 50%;
margin: 10px 20px;
cursor: pointer;
background-color: red;
}
.asta-carousel__dot.is-active {
background-color: blue;
}
</style>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Raleway:200">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="header" class="header">
<h1>Asta Carousel v 0.0.9-alpha</h1>
</div><!-- /header -->
<div class="container">
<div class="pure-g asta-carousel" id="asta-carousel">
<div class="pure-u-1-3 asta-carousel__item carousel-item">
<img src="img/9069037713_1752f5daeb.jpg">
<br>
<br>
<a class="pure-button" href="#">button</a>
</div>
<div class="pure-u-1-3 asta-carousel__item carousel-item">
<img src="img/9069585985_80da8db54f.jpg">
<br>
<br>
<a class="pure-button" href="#">button</a>
</div>
<div class="pure-u-1-3 asta-carousel__item carousel-item">
<img src="img/9121446012_c1640e42d0.jpg">
<br>
<br>
<a class="pure-button" href="#">button</a>
</div>
<div class="pure-u-1-3 asta-carousel__item carousel-item">
<img src="img/9121446012_c1640e42d0.jpg">
<br>
<br>
<a class="pure-button" href="#">button</a>
</div>
<div class="pure-u-1-3 asta-carousel__item carousel-item">
<img src="img/9121446012_c1640e42d0.jpg">
<br>
<br>
<a class="pure-button" href="#">button</a>
</div>
</div>
</div>
<p>
<a class="pure-button button-prev" href="#">prev</a>
<a class="pure-button button-next" href="#">next</a>
</p>
<p>
<a class="get-started-button button-xlarge pure-button-primary pure-button" href="#">Get Started</a>
<a class="view-started-button button-xlarge pure-button" href="#">View on GitHub</a>
</p>
<script src="js/vendor/jquery-1.12.0.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='https://www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>