forked from unhcr/global-emergencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-embed.html
executable file
·96 lines (78 loc) · 2.56 KB
/
sample-embed.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sticky footer · Twitter Bootstrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- CSS -->
<link href="css/embed.css" rel="stylesheet">
<style type="text/css">
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent footer by it's height */
margin: 0 auto -60px;
}
/* Set the fixed height of the footer here */
#push,
#footer {
height: 60px;
}
#footer {
background-color: #f5f5f5;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
.container {
width: auto;
max-width: 680px;
}
.container .credit {
margin: 20px 0;
}
</style>
</head>
<body>
<!-- Part 1: Wrap all page content here -->
<div id="wrap">
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1>Sample Embeds</h1>
</div>
<p class="lead">640x500</p>
<p><iframe width="640" height="500" frameBorder="0" src="http://unhcr.github.com/global-emergencies/#/?embed"></iframe></p>
<p><pre><iframe> width="640" height="500" frameBorder="0" src="http://unhcr.github.com/global-emergencies/#/?embed"></iframe></pre></p>
<p class="lead">600x400</p>
<p><iframe width="600" height="400" frameBorder="0" src="http://unhcr.github.com/global-emergencies/#/?embed"></iframe></p>
<p><pre><iframe> width="600" height="400" frameBorder="0" src="http://unhcr.github.com/global-emergencies/#/?embed"></iframe></pre></p>
</div>
<div id="push"></div>
</div>
<div id="footer">
<div class="container">
</div>
</div>
</body>
</html>