-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (58 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>donejs-carousel-plugin - A Plugin for DoneJS</title>
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.ico">
<style>
* {box-sizing: border-box;}
body, html {
margin: 0;
height: 100%;
width: 100%;
}
body {
display:flex;
flex-direction: column;
}
.plugin-information {
background-color: #ddd;
margin-bottom:40px;
}
.plugin-information > .container {
font-family: 'Helvetica Neue', Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
margin: 0 40px;
}
.plugin-information > .container > * {
margin: 20px;
}
iframe {
width: 100;
flex-grow: 1;
border: 0;
}
h1 {
margin: 0;
}
pre {
font-family: 'Courier', Courier, serif;
display: inline;
}
</style>
</head>
<body>
<div class="plugin-information">
<div class="container">
<h1>donejs-carousel-plugin</h1>
<div class='links'>
<p><a href="https://github.com/Tucows/donejs-carousel-plugin">View on GitHub</a></p>
<p class="text-right"><a href="https://travis-ci.org/tucows/donejs-carousel-plugin"><img alt='Build Status' src='https://travis-ci.org/tucows/donejs-carousel-plugin.svg?branch=master'/></a></p>
</div>
<span class='text'>The below iframe loads the <pre>donejs-carousel-plugin.html</pre> found in the <pre>src/</pre> folder</span>
</div>
</div>
<iframe src="src/donejs-carousel-plugin.html" />
</body>
</html>