frontend-generators 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +47 -3
- data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.eot +0 -0
- data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.svg +0 -0
- data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.ttf +0 -0
- data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.woff +0 -0
- data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/bootstrap/{bootstrap.js → vendor/assets/javascripts/bootstrap.js} +0 -0
- data/assets/bootstrap/{bootstrap.css → vendor/assets/stylesheets/bootstrap.css} +0 -0
- data/assets/creative/app/assets/images/creative/header.jpg +0 -0
- data/assets/creative/app/assets/images/creative/portfolio/1.jpg +0 -0
- data/assets/creative/app/assets/images/creative/portfolio/2.jpg +0 -0
- data/assets/creative/app/assets/images/creative/portfolio/3.jpg +0 -0
- data/assets/creative/app/assets/images/creative/portfolio/4.jpg +0 -0
- data/assets/creative/app/assets/images/creative/portfolio/5.jpg +0 -0
- data/assets/creative/app/assets/images/creative/portfolio/6.jpg +0 -0
- data/assets/creative/app/assets/javascripts/creative/cbpAnimatedHeader.js +44 -0
- data/assets/creative/app/assets/javascripts/creative/classie.js +84 -0
- data/assets/creative/app/assets/javascripts/creative/creative.js +53 -0
- data/assets/creative/app/assets/javascripts/creative/creative_mainfest.js +11 -0
- data/assets/creative/app/assets/javascripts/creative/jquery.easing.min.js +44 -0
- data/assets/creative/app/assets/javascripts/creative/jquery.fittext.js +43 -0
- data/assets/creative/app/assets/javascripts/creative/manifest.js +11 -0
- data/assets/creative/app/assets/javascripts/creative/wow.min.js +2 -0
- data/assets/creative/app/assets/stylesheets/creative/animate.min.css +6 -0
- data/assets/creative/app/assets/stylesheets/creative/creative.css.scss +476 -0
- data/assets/creative/app/assets/stylesheets/creative/manifest.css +8 -0
- data/assets/creative/app/controllers/creatives_controller.rb +6 -0
- data/assets/creative/app/views/creatives/_bg_primary.html.erb +13 -0
- data/assets/creative/app/views/creatives/_call_to_action.html.erb +9 -0
- data/assets/creative/app/views/creatives/_contact.html.erb +20 -0
- data/assets/creative/app/views/creatives/_header.html.erb +11 -0
- data/assets/creative/app/views/creatives/_navbar.html.erb +35 -0
- data/assets/creative/app/views/creatives/_portfolio.html.erb +97 -0
- data/assets/creative/app/views/creatives/_services.html.erb +43 -0
- data/assets/creative/app/views/creatives/index.html.erb +8 -0
- data/assets/creative/app/views/layouts/creative.html.erb +18 -0
- data/assets/font_awesome/{fonts → public/fonts}/FontAwesome.otf +0 -0
- data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.eot +0 -0
- data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.svg +0 -0
- data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.ttf +0 -0
- data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.woff +0 -0
- data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.woff2 +0 -0
- data/assets/font_awesome/{font_awesome.css → vendor/assets/stylesheets/font_awesome.css} +0 -0
- data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/bg.jpg +0 -0
- data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/callout.jpg +0 -0
- data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-1.jpg +0 -0
- data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-2.jpg +0 -0
- data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-3.jpg +0 -0
- data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-4.jpg +0 -0
- data/assets/stylish_portfolio/app/assets/javascripts/manifest.js +6 -0
- data/assets/stylish_portfolio/app/assets/javascripts/stylish_portfolio.js +29 -0
- data/assets/stylish_portfolio/app/assets/stylesheets/manifest.css +6 -0
- data/assets/stylish_portfolio/app/assets/stylesheets/stylish_portfolio.css.scss +239 -0
- data/assets/stylish_portfolio/app/controllers/stylish_portfolios_controller.rb +6 -0
- data/assets/stylish_portfolio/app/views/layouts/stylish_portfolio.html.erb +15 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_about.html.erb +10 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_call_to_action.html.erb +11 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_callout.html.erb +5 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_footer.html.erb +30 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_header.html.erb +8 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_map.html.erb +8 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_navigation.html.erb +24 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_portfolio.html.erb +45 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/_services.html.erb +69 -0
- data/assets/stylish_portfolio/app/views/stylish_portfolios/index.html.erb +9 -0
- data/frontend-generators.gemspec +2 -0
- data/lib/frontend_generators/assets_copier.rb +56 -0
- data/lib/frontend_generators/version.rb +1 -1
- data/lib/frontend_generators.rb +3 -2
- data/lib/tasks/add_assets.rake +16 -2
- metadata +81 -18
- data/lib/frontend_generators/bootstrap.rb +0 -38
- data/lib/frontend_generators/font_awesome.rb +0 -30
@@ -0,0 +1,476 @@
|
|
1
|
+
/*!
|
2
|
+
* Start Bootstrap - Creative Bootstrap Theme (http://startbootstrap.com)
|
3
|
+
* Code licensed under the Apache License v2.0.
|
4
|
+
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
5
|
+
*/
|
6
|
+
|
7
|
+
html,
|
8
|
+
body {
|
9
|
+
width: 100%;
|
10
|
+
height: 100%;
|
11
|
+
}
|
12
|
+
|
13
|
+
body {
|
14
|
+
font-family: Merriweather,'Helvetica Neue',Arial,sans-serif;
|
15
|
+
}
|
16
|
+
|
17
|
+
hr {
|
18
|
+
max-width: 50px;
|
19
|
+
border-color: #f05f40;
|
20
|
+
border-width: 3px;
|
21
|
+
}
|
22
|
+
|
23
|
+
hr.light {
|
24
|
+
border-color: #fff;
|
25
|
+
}
|
26
|
+
|
27
|
+
a {
|
28
|
+
color: #f05f40;
|
29
|
+
-webkit-transition: all .35s;
|
30
|
+
-moz-transition: all .35s;
|
31
|
+
transition: all .35s;
|
32
|
+
}
|
33
|
+
|
34
|
+
a:hover,
|
35
|
+
a:focus {
|
36
|
+
color: #eb3812;
|
37
|
+
}
|
38
|
+
|
39
|
+
h1,
|
40
|
+
h2,
|
41
|
+
h3,
|
42
|
+
h4,
|
43
|
+
h5,
|
44
|
+
h6 {
|
45
|
+
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
46
|
+
}
|
47
|
+
|
48
|
+
p {
|
49
|
+
margin-bottom: 20px;
|
50
|
+
font-size: 16px;
|
51
|
+
line-height: 1.5;
|
52
|
+
}
|
53
|
+
|
54
|
+
.bg-primary {
|
55
|
+
background-color: #f05f40;
|
56
|
+
}
|
57
|
+
|
58
|
+
.bg-dark {
|
59
|
+
color: #fff;
|
60
|
+
background-color: #222;
|
61
|
+
}
|
62
|
+
|
63
|
+
.text-faded {
|
64
|
+
color: rgba(255,255,255,.7);
|
65
|
+
}
|
66
|
+
|
67
|
+
section {
|
68
|
+
padding: 100px 0;
|
69
|
+
}
|
70
|
+
|
71
|
+
aside {
|
72
|
+
padding: 50px 0;
|
73
|
+
}
|
74
|
+
|
75
|
+
.no-padding {
|
76
|
+
padding: 0;
|
77
|
+
}
|
78
|
+
|
79
|
+
.navbar-default {
|
80
|
+
border-color: rgba(34,34,34,.05);
|
81
|
+
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
82
|
+
background-color: #fff;
|
83
|
+
-webkit-transition: all .35s;
|
84
|
+
-moz-transition: all .35s;
|
85
|
+
transition: all .35s;
|
86
|
+
}
|
87
|
+
|
88
|
+
.navbar-default .navbar-header .navbar-brand {
|
89
|
+
text-transform: uppercase;
|
90
|
+
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
91
|
+
font-weight: 700;
|
92
|
+
color: #f05f40;
|
93
|
+
}
|
94
|
+
|
95
|
+
.navbar-default .navbar-header .navbar-brand:hover,
|
96
|
+
.navbar-default .navbar-header .navbar-brand:focus {
|
97
|
+
color: #eb3812;
|
98
|
+
}
|
99
|
+
|
100
|
+
.navbar-default .nav > li>a,
|
101
|
+
.navbar-default .nav>li>a:focus {
|
102
|
+
text-transform: uppercase;
|
103
|
+
font-size: 13px;
|
104
|
+
font-weight: 700;
|
105
|
+
color: #222;
|
106
|
+
}
|
107
|
+
|
108
|
+
.navbar-default .nav > li>a:hover,
|
109
|
+
.navbar-default .nav>li>a:focus:hover {
|
110
|
+
color: #f05f40;
|
111
|
+
}
|
112
|
+
|
113
|
+
.navbar-default .nav > li.active>a,
|
114
|
+
.navbar-default .nav>li.active>a:focus {
|
115
|
+
color: #f05f40!important;
|
116
|
+
background-color: transparent;
|
117
|
+
}
|
118
|
+
|
119
|
+
.navbar-default .nav > li.active>a:hover,
|
120
|
+
.navbar-default .nav>li.active>a:focus:hover {
|
121
|
+
background-color: transparent;
|
122
|
+
}
|
123
|
+
|
124
|
+
@media(min-width:768px) {
|
125
|
+
.navbar-default {
|
126
|
+
border-color: rgba(255,255,255,.3);
|
127
|
+
background-color: transparent;
|
128
|
+
}
|
129
|
+
|
130
|
+
.navbar-default .navbar-header .navbar-brand {
|
131
|
+
color: rgba(255,255,255,.7);
|
132
|
+
}
|
133
|
+
|
134
|
+
.navbar-default .navbar-header .navbar-brand:hover,
|
135
|
+
.navbar-default .navbar-header .navbar-brand:focus {
|
136
|
+
color: #fff;
|
137
|
+
}
|
138
|
+
|
139
|
+
.navbar-default .nav > li>a,
|
140
|
+
.navbar-default .nav>li>a:focus {
|
141
|
+
color: rgba(255,255,255,.7);
|
142
|
+
}
|
143
|
+
|
144
|
+
.navbar-default .nav > li>a:hover,
|
145
|
+
.navbar-default .nav>li>a:focus:hover {
|
146
|
+
color: #fff;
|
147
|
+
}
|
148
|
+
|
149
|
+
.navbar-default.affix {
|
150
|
+
border-color: rgba(34,34,34,.05);
|
151
|
+
background-color: #fff;
|
152
|
+
}
|
153
|
+
|
154
|
+
.navbar-default.affix .navbar-header .navbar-brand {
|
155
|
+
font-size: 14px;
|
156
|
+
color: #f05f40;
|
157
|
+
}
|
158
|
+
|
159
|
+
.navbar-default.affix .navbar-header .navbar-brand:hover,
|
160
|
+
.navbar-default.affix .navbar-header .navbar-brand:focus {
|
161
|
+
color: #eb3812;
|
162
|
+
}
|
163
|
+
|
164
|
+
.navbar-default.affix .nav > li>a,
|
165
|
+
.navbar-default.affix .nav>li>a:focus {
|
166
|
+
color: #222;
|
167
|
+
}
|
168
|
+
|
169
|
+
.navbar-default.affix .nav > li>a:hover,
|
170
|
+
.navbar-default.affix .nav>li>a:focus:hover {
|
171
|
+
color: #f05f40;
|
172
|
+
}
|
173
|
+
}
|
174
|
+
|
175
|
+
header {
|
176
|
+
position: relative;
|
177
|
+
width: 100%;
|
178
|
+
min-height: auto;
|
179
|
+
text-align: center;
|
180
|
+
color: #fff;
|
181
|
+
background-image: asset-data-url("creative/header.jpg");
|
182
|
+
background-position: center;
|
183
|
+
-webkit-background-size: cover;
|
184
|
+
-moz-background-size: cover;
|
185
|
+
background-size: cover;
|
186
|
+
-o-background-size: cover;
|
187
|
+
}
|
188
|
+
|
189
|
+
header .header-content {
|
190
|
+
position: relative;
|
191
|
+
width: 100%;
|
192
|
+
padding: 100px 15px;
|
193
|
+
text-align: center;
|
194
|
+
}
|
195
|
+
|
196
|
+
header .header-content .header-content-inner h1 {
|
197
|
+
margin-top: 0;
|
198
|
+
margin-bottom: 0;
|
199
|
+
text-transform: uppercase;
|
200
|
+
font-weight: 700;
|
201
|
+
}
|
202
|
+
|
203
|
+
header .header-content .header-content-inner hr {
|
204
|
+
margin: 30px auto;
|
205
|
+
}
|
206
|
+
|
207
|
+
header .header-content .header-content-inner p {
|
208
|
+
margin-bottom: 50px;
|
209
|
+
font-size: 16px;
|
210
|
+
font-weight: 300;
|
211
|
+
color: rgba(255,255,255,.7);
|
212
|
+
}
|
213
|
+
|
214
|
+
@media(min-width:768px) {
|
215
|
+
header {
|
216
|
+
min-height: 100%;
|
217
|
+
}
|
218
|
+
|
219
|
+
header .header-content {
|
220
|
+
position: absolute;
|
221
|
+
top: 50%;
|
222
|
+
padding: 0 50px;
|
223
|
+
-webkit-transform: translateY(-50%);
|
224
|
+
-ms-transform: translateY(-50%);
|
225
|
+
transform: translateY(-50%);
|
226
|
+
}
|
227
|
+
|
228
|
+
header .header-content .header-content-inner {
|
229
|
+
margin-right: auto;
|
230
|
+
margin-left: auto;
|
231
|
+
max-width: 1000px;
|
232
|
+
}
|
233
|
+
|
234
|
+
header .header-content .header-content-inner p {
|
235
|
+
margin-right: auto;
|
236
|
+
margin-left: auto;
|
237
|
+
max-width: 80%;
|
238
|
+
font-size: 18px;
|
239
|
+
}
|
240
|
+
}
|
241
|
+
|
242
|
+
.section-heading {
|
243
|
+
margin-top: 0;
|
244
|
+
}
|
245
|
+
|
246
|
+
.service-box {
|
247
|
+
margin: 50px auto 0;
|
248
|
+
max-width: 400px;
|
249
|
+
}
|
250
|
+
|
251
|
+
@media(min-width:992px) {
|
252
|
+
.service-box {
|
253
|
+
margin: 20px auto 0;
|
254
|
+
}
|
255
|
+
}
|
256
|
+
|
257
|
+
.service-box p {
|
258
|
+
margin-bottom: 0;
|
259
|
+
}
|
260
|
+
|
261
|
+
.portfolio-box {
|
262
|
+
display: block;
|
263
|
+
position: relative;
|
264
|
+
margin: 0 auto;
|
265
|
+
max-width: 650px;
|
266
|
+
}
|
267
|
+
|
268
|
+
.portfolio-box .portfolio-box-caption {
|
269
|
+
display: block;
|
270
|
+
position: absolute;
|
271
|
+
bottom: 0;
|
272
|
+
width: 100%;
|
273
|
+
height: 100%;
|
274
|
+
text-align: center;
|
275
|
+
color: #fff;
|
276
|
+
opacity: 0;
|
277
|
+
background: rgba(240,95,64,.9);
|
278
|
+
-webkit-transition: all .35s;
|
279
|
+
-moz-transition: all .35s;
|
280
|
+
transition: all .35s;
|
281
|
+
}
|
282
|
+
|
283
|
+
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
|
284
|
+
position: absolute;
|
285
|
+
top: 50%;
|
286
|
+
width: 100%;
|
287
|
+
text-align: center;
|
288
|
+
transform: translateY(-50%);
|
289
|
+
}
|
290
|
+
|
291
|
+
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
|
292
|
+
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
|
293
|
+
padding: 0 15px;
|
294
|
+
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
295
|
+
}
|
296
|
+
|
297
|
+
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
|
298
|
+
text-transform: uppercase;
|
299
|
+
font-size: 14px;
|
300
|
+
font-weight: 600;
|
301
|
+
}
|
302
|
+
|
303
|
+
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
|
304
|
+
font-size: 18px;
|
305
|
+
}
|
306
|
+
|
307
|
+
.portfolio-box:hover .portfolio-box-caption {
|
308
|
+
opacity: 1;
|
309
|
+
}
|
310
|
+
|
311
|
+
@media(min-width:768px) {
|
312
|
+
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
|
313
|
+
font-size: 16px;
|
314
|
+
}
|
315
|
+
|
316
|
+
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
|
317
|
+
font-size: 22px;
|
318
|
+
}
|
319
|
+
}
|
320
|
+
|
321
|
+
.call-to-action h2 {
|
322
|
+
margin: 0 auto 20px;
|
323
|
+
}
|
324
|
+
|
325
|
+
.text-primary {
|
326
|
+
color: #f05f40;
|
327
|
+
}
|
328
|
+
|
329
|
+
.no-gutter > [class*=col-] {
|
330
|
+
padding-right: 0;
|
331
|
+
padding-left: 0;
|
332
|
+
}
|
333
|
+
|
334
|
+
.btn-default {
|
335
|
+
border-color: #fff;
|
336
|
+
color: #222;
|
337
|
+
background-color: #fff;
|
338
|
+
-webkit-transition: all .35s;
|
339
|
+
-moz-transition: all .35s;
|
340
|
+
transition: all .35s;
|
341
|
+
}
|
342
|
+
|
343
|
+
.btn-default:hover,
|
344
|
+
.btn-default:focus,
|
345
|
+
.btn-default.focus,
|
346
|
+
.btn-default:active,
|
347
|
+
.btn-default.active,
|
348
|
+
.open > .dropdown-toggle.btn-default {
|
349
|
+
border-color: #ededed;
|
350
|
+
color: #222;
|
351
|
+
background-color: #f2f2f2;
|
352
|
+
}
|
353
|
+
|
354
|
+
.btn-default:active,
|
355
|
+
.btn-default.active,
|
356
|
+
.open > .dropdown-toggle.btn-default {
|
357
|
+
background-image: none;
|
358
|
+
}
|
359
|
+
|
360
|
+
.btn-default.disabled,
|
361
|
+
.btn-default[disabled],
|
362
|
+
fieldset[disabled] .btn-default,
|
363
|
+
.btn-default.disabled:hover,
|
364
|
+
.btn-default[disabled]:hover,
|
365
|
+
fieldset[disabled] .btn-default:hover,
|
366
|
+
.btn-default.disabled:focus,
|
367
|
+
.btn-default[disabled]:focus,
|
368
|
+
fieldset[disabled] .btn-default:focus,
|
369
|
+
.btn-default.disabled.focus,
|
370
|
+
.btn-default[disabled].focus,
|
371
|
+
fieldset[disabled] .btn-default.focus,
|
372
|
+
.btn-default.disabled:active,
|
373
|
+
.btn-default[disabled]:active,
|
374
|
+
fieldset[disabled] .btn-default:active,
|
375
|
+
.btn-default.disabled.active,
|
376
|
+
.btn-default[disabled].active,
|
377
|
+
fieldset[disabled] .btn-default.active {
|
378
|
+
border-color: #fff;
|
379
|
+
background-color: #fff;
|
380
|
+
}
|
381
|
+
|
382
|
+
.btn-default .badge {
|
383
|
+
color: #fff;
|
384
|
+
background-color: #222;
|
385
|
+
}
|
386
|
+
|
387
|
+
.btn-primary {
|
388
|
+
border-color: #f05f40;
|
389
|
+
color: #fff;
|
390
|
+
background-color: #f05f40;
|
391
|
+
-webkit-transition: all .35s;
|
392
|
+
-moz-transition: all .35s;
|
393
|
+
transition: all .35s;
|
394
|
+
}
|
395
|
+
|
396
|
+
.btn-primary:hover,
|
397
|
+
.btn-primary:focus,
|
398
|
+
.btn-primary.focus,
|
399
|
+
.btn-primary:active,
|
400
|
+
.btn-primary.active,
|
401
|
+
.open > .dropdown-toggle.btn-primary {
|
402
|
+
border-color: #ed431f;
|
403
|
+
color: #fff;
|
404
|
+
background-color: #ee4b28;
|
405
|
+
}
|
406
|
+
|
407
|
+
.btn-primary:active,
|
408
|
+
.btn-primary.active,
|
409
|
+
.open > .dropdown-toggle.btn-primary {
|
410
|
+
background-image: none;
|
411
|
+
}
|
412
|
+
|
413
|
+
.btn-primary.disabled,
|
414
|
+
.btn-primary[disabled],
|
415
|
+
fieldset[disabled] .btn-primary,
|
416
|
+
.btn-primary.disabled:hover,
|
417
|
+
.btn-primary[disabled]:hover,
|
418
|
+
fieldset[disabled] .btn-primary:hover,
|
419
|
+
.btn-primary.disabled:focus,
|
420
|
+
.btn-primary[disabled]:focus,
|
421
|
+
fieldset[disabled] .btn-primary:focus,
|
422
|
+
.btn-primary.disabled.focus,
|
423
|
+
.btn-primary[disabled].focus,
|
424
|
+
fieldset[disabled] .btn-primary.focus,
|
425
|
+
.btn-primary.disabled:active,
|
426
|
+
.btn-primary[disabled]:active,
|
427
|
+
fieldset[disabled] .btn-primary:active,
|
428
|
+
.btn-primary.disabled.active,
|
429
|
+
.btn-primary[disabled].active,
|
430
|
+
fieldset[disabled] .btn-primary.active {
|
431
|
+
border-color: #f05f40;
|
432
|
+
background-color: #f05f40;
|
433
|
+
}
|
434
|
+
|
435
|
+
.btn-primary .badge {
|
436
|
+
color: #f05f40;
|
437
|
+
background-color: #fff;
|
438
|
+
}
|
439
|
+
|
440
|
+
.btn {
|
441
|
+
border: 0;
|
442
|
+
border-radius: 300px;
|
443
|
+
text-transform: uppercase;
|
444
|
+
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
445
|
+
font-weight: 700;
|
446
|
+
}
|
447
|
+
|
448
|
+
.btn-xl {
|
449
|
+
padding: 15px 30px;
|
450
|
+
}
|
451
|
+
|
452
|
+
::-moz-selection {
|
453
|
+
text-shadow: none;
|
454
|
+
color: #fff;
|
455
|
+
background: #222;
|
456
|
+
}
|
457
|
+
|
458
|
+
::selection {
|
459
|
+
text-shadow: none;
|
460
|
+
color: #fff;
|
461
|
+
background: #222;
|
462
|
+
}
|
463
|
+
|
464
|
+
img::selection {
|
465
|
+
color: #fff;
|
466
|
+
background: 0 0;
|
467
|
+
}
|
468
|
+
|
469
|
+
img::-moz-selection {
|
470
|
+
color: #fff;
|
471
|
+
background: 0 0;
|
472
|
+
}
|
473
|
+
|
474
|
+
body {
|
475
|
+
webkit-tap-highlight-color: #222;
|
476
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<section class="bg-primary" id="about">
|
2
|
+
<div class="container">
|
3
|
+
<div class="row">
|
4
|
+
<div class="col-lg-8 col-lg-offset-2 text-center">
|
5
|
+
<h2 class="section-heading">We've got what you need!</h2>
|
6
|
+
<hr class="light">
|
7
|
+
<p class="text-faded">Start Bootstrap has everything you need to get your new website up and running in no time! All of the templates and themes on Start Bootstrap are open source, free to download, and easy to use. No strings attached!</p>
|
8
|
+
<a href="#" class="btn btn-default btn-xl">Get Started!</a>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
</section>
|
13
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<section id="contact">
|
2
|
+
<div class="container">
|
3
|
+
<div class="row">
|
4
|
+
<div class="col-lg-8 col-lg-offset-2 text-center">
|
5
|
+
<h2 class="section-heading">Let's Get In Touch!</h2>
|
6
|
+
<hr class="primary">
|
7
|
+
<p>Ready to start your next project with us? That's great! Give us a call or send us an email and we will get back to you as soon as possible!</p>
|
8
|
+
</div>
|
9
|
+
<div class="col-lg-4 col-lg-offset-2 text-center">
|
10
|
+
<i class="fa fa-phone fa-3x wow bounceIn"></i>
|
11
|
+
<p>123-456-6789</p>
|
12
|
+
</div>
|
13
|
+
<div class="col-lg-4 text-center">
|
14
|
+
<i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i>
|
15
|
+
<p><a href="mailto:your-email@your-domain.com">feedback@startbootstrap.com</a></p>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</section>
|
20
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<header>
|
2
|
+
<div class="header-content">
|
3
|
+
<div class="header-content-inner">
|
4
|
+
<h1>Your Favorite Source of Free Bootstrap Themes</h1>
|
5
|
+
<hr>
|
6
|
+
<p>Start Bootstrap can help you build better websites using the Bootstrap CSS framework! Just download your template and start going, no strings attached!</p>
|
7
|
+
<a href="#about" class="btn btn-primary btn-xl page-scroll">Find Out More</a>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</header>
|
11
|
+
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
|
2
|
+
<div class="container-fluid">
|
3
|
+
<!-- Brand and toggle get grouped for better mobile display -->
|
4
|
+
<div class="navbar-header">
|
5
|
+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
6
|
+
<span class="sr-only">Toggle navigation</span>
|
7
|
+
<span class="icon-bar"></span>
|
8
|
+
<span class="icon-bar"></span>
|
9
|
+
<span class="icon-bar"></span>
|
10
|
+
</button>
|
11
|
+
<a class="navbar-brand page-scroll" href="#page-top">Start Bootstrap</a>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<!-- Collect the nav links, forms, and other content for toggling -->
|
15
|
+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
16
|
+
<ul class="nav navbar-nav navbar-right">
|
17
|
+
<li>
|
18
|
+
<a class="page-scroll" href="#about">About</a>
|
19
|
+
</li>
|
20
|
+
<li>
|
21
|
+
<a class="page-scroll" href="#services">Services</a>
|
22
|
+
</li>
|
23
|
+
<li>
|
24
|
+
<a class="page-scroll" href="#portfolio">Portfolio</a>
|
25
|
+
</li>
|
26
|
+
<li>
|
27
|
+
<a class="page-scroll" href="#contact">Contact</a>
|
28
|
+
</li>
|
29
|
+
</ul>
|
30
|
+
</div>
|
31
|
+
<!-- /.navbar-collapse -->
|
32
|
+
</div>
|
33
|
+
<!-- /.container-fluid -->
|
34
|
+
</nav>
|
35
|
+
|
@@ -0,0 +1,97 @@
|
|
1
|
+
<section class="no-padding" id="portfolio">
|
2
|
+
<div class="container-fluid">
|
3
|
+
<div class="row no-gutter">
|
4
|
+
<div class="col-lg-4 col-sm-6">
|
5
|
+
<a href="#" class="portfolio-box">
|
6
|
+
<%= image_tag "creative/portfolio/1.jpg", class: "img-responsive", alt: "" %>
|
7
|
+
<div class="portfolio-box-caption">
|
8
|
+
<div class="portfolio-box-caption-content">
|
9
|
+
<div class="project-category text-faded">
|
10
|
+
Category
|
11
|
+
</div>
|
12
|
+
<div class="project-name">
|
13
|
+
Project Name
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</a>
|
18
|
+
</div>
|
19
|
+
<div class="col-lg-4 col-sm-6">
|
20
|
+
<a href="#" class="portfolio-box">
|
21
|
+
<%= image_tag "creative/portfolio/2.jpg", class: "img-responsive", alt: "" %>
|
22
|
+
<div class="portfolio-box-caption">
|
23
|
+
<div class="portfolio-box-caption-content">
|
24
|
+
<div class="project-category text-faded">
|
25
|
+
Category
|
26
|
+
</div>
|
27
|
+
<div class="project-name">
|
28
|
+
Project Name
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</a>
|
33
|
+
</div>
|
34
|
+
<div class="col-lg-4 col-sm-6">
|
35
|
+
<a href="#" class="portfolio-box">
|
36
|
+
<%= image_tag "creative/portfolio/3.jpg", class: "img-responsive", alt: "" %>
|
37
|
+
<div class="portfolio-box-caption">
|
38
|
+
<div class="portfolio-box-caption-content">
|
39
|
+
<div class="project-category text-faded">
|
40
|
+
Category
|
41
|
+
</div>
|
42
|
+
<div class="project-name">
|
43
|
+
Project Name
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</a>
|
48
|
+
</div>
|
49
|
+
<div class="col-lg-4 col-sm-6">
|
50
|
+
<a href="#" class="portfolio-box">
|
51
|
+
<%= image_tag "creative/portfolio/4.jpg", class: "img-responsive", alt: "" %>
|
52
|
+
<div class="portfolio-box-caption">
|
53
|
+
<div class="portfolio-box-caption-content">
|
54
|
+
<div class="project-category text-faded">
|
55
|
+
Category
|
56
|
+
</div>
|
57
|
+
<div class="project-name">
|
58
|
+
Project Name
|
59
|
+
</div>
|
60
|
+
</div>
|
61
|
+
</div>
|
62
|
+
</a>
|
63
|
+
</div>
|
64
|
+
<div class="col-lg-4 col-sm-6">
|
65
|
+
<a href="#" class="portfolio-box">
|
66
|
+
<%= image_tag "creative/portfolio/5.jpg", class: "img-responsive", alt: "" %>
|
67
|
+
<div class="portfolio-box-caption">
|
68
|
+
<div class="portfolio-box-caption-content">
|
69
|
+
<div class="project-category text-faded">
|
70
|
+
Category
|
71
|
+
</div>
|
72
|
+
<div class="project-name">
|
73
|
+
Project Name
|
74
|
+
</div>
|
75
|
+
</div>
|
76
|
+
</div>
|
77
|
+
</a>
|
78
|
+
</div>
|
79
|
+
<div class="col-lg-4 col-sm-6">
|
80
|
+
<a href="#" class="portfolio-box">
|
81
|
+
<%= image_tag "creative/portfolio/6.jpg", class: "img-responsive", alt: "" %>
|
82
|
+
<div class="portfolio-box-caption">
|
83
|
+
<div class="portfolio-box-caption-content">
|
84
|
+
<div class="project-category text-faded">
|
85
|
+
Category
|
86
|
+
</div>
|
87
|
+
<div class="project-name">
|
88
|
+
Project Name
|
89
|
+
</div>
|
90
|
+
</div>
|
91
|
+
</div>
|
92
|
+
</a>
|
93
|
+
</div>
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
</section>
|
97
|
+
|