-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
45 lines (43 loc) · 1.12 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Promises - Webmontag 12.05.2014</title>
<link rel="stylesheet" type="text/css" href="assets/bootstrap/dist/css/bootstrap.min.css">
<style>
.thumbnail {
height: 425px;
overflow: hidden;
}
output {
font-weight: bold;
color: white;
}
footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 2em;
background-color: rgba(255,255,255, 0.5);
text-align: center;
font-weight: bold;
}
</style>
</head>
<body>
<article class="container">
<button id="start" type="button" class="btn btn-primary btn-block">Insert coin<output id="percent"></output></button>
<section id="gallery">
<div class="row">
</div>
</section>
<footer></footer>
</article>
<script src="assets/js/spin.min.js"></script>
<script src="assets/js/jquery-1.10.1.min.js"></script>
<script src="app.js"></script>
</body>
</html>