forked from heroku/node-js-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_wireframe.html
102 lines (94 loc) · 2.82 KB
/
index_wireframe.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
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Bitstarter</title>
<!-- Bootstrap -->
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<style type="text/css">
body {
padding-top: 20px;
padding-bottom: 40px;
}
/* Remove to make responsive
.container {
width: 960px;
}
*/
.row {
border: 1px solid;
}
.row + .row {
border-top:0;
}
p.lead {
padding-top: 15px;
}
.navigation, .pitch, .section1, .section2, .faq, .footer {
padding: 10px 0px 10px 0px;
}
.video, .thermometer, .order, .social {
border: 1px dotted;
text-align: center;
}
.video {
/* line-height to vertically center: http://phrogz.net/css/vertical-align/index.html */
height: 120px;
line-height: 120px;
}
.thermometer, .order, .social {
/* line-height to vertically center: http://phrogz.net/css/vertical-align/index.html */
height: 40px;
line-height: 40px;
}
</style>
</head>
<body>
<div class="container">
<div class="row navigation">
<div class="col-md-2 logo">Logo</div>
<div class="col-md-6 blank">Blank</div>
<div class="col-md-4 about">About</div>
</div>
<div class="row heading">
<div class="col-md-12">
<h1>Bitstarter Title</h1>
</div>
</div>
<div class="row subheading">
<div class="col-md-12">
<p class="lead">This is my first bitstarter project</p>
</div>
</div>
<div class="row pitch">
<div class="col-md-6">
<div class="video">Video</div>
</div>
<div class="col-md-6">
<div class="thermometer">Thermometer</div>
<div class="order">Order</div>
<div class="social">Social</div>
</div>
</div>
<div class="row section1">
<div class="col-md-12">Marketing Section 1</div>
</div>
<div class="row section2">
<div class="col-md-12">Marketing Section 2</div>
</div>
<div class="row faq">
<div class="col-md-12">FAQ</div>
</div>
<div class="row footer">
<div class="col-md-12">Footer</div>
</div>
</div>
</body>
</html>