-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.06 KB
/
index.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
<!doctype html>
<html lang="en" ng-app="galleryApp"><!-- ng-app is the directive (command) for the app -->
<head>
<meta charset="UTF-8">
<title>Angular Slides</title>
<script src="lib/angular/angular.min.js"></script>
<script src="lib/angular/angular-route.min.js"></script>
<script src="lib/angular/angular-touch.min.js"></script>
<script src="lib/angular/angular-animate.min.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
<style>
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 20px;
padding: 0;
}
ul.carousel,
ul.carousel li {
list-style: none;
margin: 0;
padding: 0;
}
ul.carousel li {
max-width: 25%;
float: left;
padding: 10px;
border: 2px solid #fff;
}
ul.carousel li.highlight-true {
border: 2px solid #336699;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 0;
}
</style>
</head>
<body>
<div class="main" ng-view></div>
</body>
</html>