-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·235 lines (213 loc) · 11.6 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Generate random Bootstrap themes">
<meta name="author" content="Matronator">
<link rel="author" href="./humans.txt">
<title>Bootstrap Theme Generator</title>
<!-- Bootstrap core CSS -->
<link href="./vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700|Raleway:100,200,300,400,500,600,700|Roboto:300,400,500,700" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/variables.css" rel="stylesheet">
<link href="./css/colors.css" rel="stylesheet">
<link href="./css/main.css" rel="stylesheet">
<link href="./css/plugin.css" rel="stylesheet">
<link href="./css/scrolling-nav.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<script type="text/html" id="template-nav">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">Start Bootstrap</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav mr-auto" id="mainUl">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</script>
<script type="text/html" id="template-header">
<header class="bg-primary text-white" id="header">
<div class="header-inner text-center">
<h1 class="header-title">The Company Name</h1>
<p class="lead header-subtitle">A landing page template freshly redesigned for Bootstrap 4</p>
</div>
</header>
</script>
<script type="text/html" id="template-content">
<section class="section" id="about">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2 class="section-title">About this page</h2>
<hr class="underline underline-primary">
<p class="lead">This is a great place to talk about your webpage. This template is purposefully unstyled so you can use it as a boilerplate or starting point for you own landing page designs! This template features:</p>
<ul>
<li>Clickable nav links that smooth scroll to page sections</li>
<li>Responsive behavior when clicking nav links perfect for a one page website</li>
<li>Bootstrap's scrollspy feature which highlights which section of the page you're on in the navbar</li>
<li>Minimal custom CSS so you are free to explore your own unique design options</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section bg-light" id="services">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2 class="section-title">Services we offer</h2>
<hr class="underline underline-secondary">
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut optio velit inventore, expedita quo laboriosam possimus ea consequatur vitae, doloribus consequuntur ex. Nemo assumenda laborum vel, labore ut velit dignissimos.</p>
</div>
</div>
</div>
</section>
<section class="section" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2 class="section-title">Contact us</h2>
<hr class="underline underline-primary">
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vero odio fugiat voluptatem dolor, provident officiis, id iusto! Obcaecati incidunt, qui nihil beatae magnam et repudiandae ipsa exercitationem, in, quo totam.</p>
</div>
</div>
</div>
</section>
</script>
<!-- Footer -->
<script type="text/html" id="template-footer">
<footer class="footer bg-dark">
<div class="container">
<p class="m-0 text-center text-white">Copyright © Your Website 2019</p>
</div>
</footer>
</script>
<!-- Plugin controls overlay -->
<script type="text/html" id="template-plugin-controls">
<div id="overlay" class="bg-light border border-dark rounded">
<div class="container">
<div class="collapse" id="controlSettings">
<h4 class="plugin-title">Theme Generator <span class="text-muted">0.2</span></h4>
<div class="row">
<div class="d-flex flex-column p-2 m-1 border border-secondary rounded" id="control-colors">
<div class="d-flex flex-row justify-content-between" id="color-hue">
<span>Hue: </span>
<input type="number" step="1" min="0" max="360" value="0" id="color-input-hue" class="control-hue">
<input type="range" step="1" min="0" max="360" value="0" id="color-slider-hue" class="control-hue">
</div>
<div class="d-flex flex-row justify-content-between" id="color-saturation">
<span>Saturation: </span>
<input type="number" step="1" min="0" max="100" value="0" id="color-input-saturation" class="control-saturation">
<input type="range" step="1" min="0" max="100" value="0" id="color-slider-saturation" class="control-saturation">
</div>
<div class="d-flex flex-row justify-content-between" id="color-lightness">
<span>Lightness: </span>
<input type="number" step="1" min="0" max="100" value="0" id="color-input-lightness" class="control-lightness">
<input type="range" step="1" min="0" max="100" value="0" id="color-slider-lightness" class="control-lightness">
</div>
</div>
</div>
<div class="row">
<div class="d-flex flex-column text-right p-2 m-1 border border-secondary rounded" id="control-fonts">
<label class="plugin-lbl" for="hfont" id="lbl-font-h">
Headings font:
<select id="select-font-h" name="hfont" class="select">
<option id="font-h-default" value="Bootstrap default">Bootstrap default</option>
<option id="font-h-monserrat" value="Montserrat">Montserrat</option>
<option id="font-h-raleway" value="Raleway">Raleway</option>
<option id="font-h-roboto" value="Roboto">Roboto</option>
</select>
</label>
<label class="plugin-lbl" for="navfont" id="lbl-font-nav">
Top menu font:
<select id="select-font-nav" name="navfont" class="select">
<option id="font-nav-default" value="Bootstrap default">Bootstrap default</option>
<option id="font-nav-monserrat" value="Montserrat">Montserrat</option>
<option id="font-nav-raleway" value="Raleway">Raleway</option>
<option id="font-nav-roboto" value="Roboto">Roboto</option>
</select>
</label>
<label class="plugin-lbl" for="pfont" id="lbl-font-p">
Paragraphs font:
<select id="select-font-p" name="pfont" class="select">
<option id="font-p-default" value="Bootstrap default">Bootstrap default</option>
<option id="font-p-monserrat" value="Montserrat">Montserrat</option>
<option id="font-p-raleway" value="Raleway">Raleway</option>
<option id="font-p-roboto" value="Roboto">Roboto</option>
</select>
</label>
<div class="custom-control custom-switch unselectable text-left">
<input type="checkbox" class="custom-control-input" id="menuAlignSwitch" value="unchecked">
<label class="custom-control-label" for="menuAlignSwitch">Menu items on the <span id="menuAlignPosition">left</span></label>
<label class="plugin-lbl unselectable text-left" id="lbl-menuAlign-lock">
<input type="checkbox" class="lock-checkbox" id="menu-align-lock" value="unchecked">
<i class="fa fa-unlock-alt"></i>
</label>
</div>
</div>
<div class="d-flex flex-column text-right p-2 m-1 border border-secondary rounded" id="control-weight">
<label class="plugin-lbl" id="lbl-weight-header">
Header title weight:
<input type="number" id="font-weight-header" step="100" min="100" max="900" value="500">
<label class="plugin-lbl unselectable text-left" id="lbl-weightHeader-lock">
<input type="checkbox" class="lock-checkbox" id="weight-header-lock" value="unchecked">
<i class="fa fa-unlock-alt"></i>
</label>
</label>
<label class="plugin-lbl" id="lbl-weight-nav">
Menu items weight:
<input type="number" id="font-weight-nav" step="100" min="100" max="900" value="500">
<label class="plugin-lbl unselectable text-left" id="lbl-weightNav-lock">
<input type="checkbox" class="lock-checkbox" id="weight-nav-lock" value="unchecked">
<i class="fa fa-unlock-alt"></i>
</label>
</label>
<label class="plugin-lbl" id="lbl-weight-section">
Section title weight:
<input type="number" id="font-weight-section" step="100" min="100" max="900" value="500">
<label class="plugin-lbl unselectable text-left" id="lbl-weightSection-lock">
<input type="checkbox" class="lock-checkbox" id="weight-section-lock" value="unchecked">
<i class="fa fa-unlock-alt"></i>
</label>
</label>
</div>
</div>
</div>
<button type="button" class="btn btn-sm btn-secondary" id="btn-generate">Generate random style</button>
<div class="btn-group" data-toggle="button">
<button class="btn btn-sm btn-secondary" data-toggle="collapse" data-target="#controlSettings" type="button" aria-expanded="false" aria-controls="controlSettings">Customize</button>
</div>
</div>
</div>
</script>
<!-- Bootstrap core JavaScript -->
<script src="./vendor/jquery/jquery.min.js"></script>
<script src="./vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="./vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom JavaScript for this theme -->
<script src="./js/scrolling-nav.js"></script>
<!-- Build page from templates and inject plugin controls -->
<script src="./js/plugin.js"></script>
</body>
</html>