jekyll-theme-onepage 0.1.0

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.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +57 -0
  4. data/_example-posts/2018-02-07-first-project.md +15 -0
  5. data/_example-posts/2018-02-07-fourth-project.md +15 -0
  6. data/_example-posts/2018-02-07-second-project.md +15 -0
  7. data/_example-posts/2018-02-07-third-project.md +15 -0
  8. data/_includes/footer.html +23 -0
  9. data/_includes/head.html +25 -0
  10. data/_includes/header.html +7 -0
  11. data/_layouts/home.html +165 -0
  12. data/_layouts/post.html +28 -0
  13. data/assets/css/fonts/FontAwesome.otf +0 -0
  14. data/assets/css/fonts/Simple-Line-Icons.eot +0 -0
  15. data/assets/css/fonts/Simple-Line-Icons.svg +200 -0
  16. data/assets/css/fonts/Simple-Line-Icons.ttf +0 -0
  17. data/assets/css/fonts/Simple-Line-Icons.woff +0 -0
  18. data/assets/css/fonts/Simple-Line-Icons.woff2 +0 -0
  19. data/assets/css/fonts/fontawesome-webfont.eot +0 -0
  20. data/assets/css/fonts/fontawesome-webfont.svg +2671 -0
  21. data/assets/css/fonts/fontawesome-webfont.ttf +0 -0
  22. data/assets/css/fonts/fontawesome-webfont.woff +0 -0
  23. data/assets/css/fonts/fontawesome-webfont.woff2 +0 -0
  24. data/assets/css/style-posts.css +20 -0
  25. data/assets/css/style.css +445 -0
  26. data/assets/css/vendor/bootstrap.min.css +7 -0
  27. data/assets/css/vendor/bootstrap.min.css.map +1 -0
  28. data/assets/css/vendor/font-awesome.min.css +4 -0
  29. data/assets/css/vendor/simple-line-icons.css +778 -0
  30. data/assets/img/advanced-feature-1.jpg +0 -0
  31. data/assets/img/advanced-feature-2.jpg +0 -0
  32. data/assets/img/advanced-feature-3.jpg +0 -0
  33. data/assets/img/bg-callout.jpg +0 -0
  34. data/assets/img/bg-masthead.jpg +0 -0
  35. data/assets/img/portfolio-1.jpg +0 -0
  36. data/assets/img/portfolio-2.jpg +0 -0
  37. data/assets/img/portfolio-3.jpg +0 -0
  38. data/assets/img/portfolio-4.jpg +0 -0
  39. data/assets/js/main.js +64 -0
  40. data/assets/js/vendor/bootstrap.bundle.min.js +7 -0
  41. data/assets/js/vendor/bootstrap.bundle.min.js.map +1 -0
  42. data/assets/js/vendor/jquery.easing.min.js +1 -0
  43. data/assets/js/vendor/jquery.min.js +2 -0
  44. data/assets/js/vendor/jquery.slim.min.js +2 -0
  45. metadata +129 -0
@@ -0,0 +1,20 @@
1
+ .content_post {
2
+ margin-top: 40px;
3
+ }
4
+
5
+ .content_post_title {
6
+ font-size: 28px;
7
+ color:black;
8
+ margin-bottom: 20px
9
+ }
10
+
11
+ .content_post_subtitle {
12
+ color:#909091;
13
+ font-size:18px;
14
+ margin-bottom: 50px
15
+ }
16
+
17
+ .content_text {
18
+ margin: 50px;
19
+ font-size: 16px;
20
+ }
@@ -0,0 +1,445 @@
1
+ body,
2
+ html {
3
+ width: 100%;
4
+ height: 100%;
5
+ }
6
+
7
+ body {
8
+ font-family: 'Source Sans Pro';
9
+ }
10
+
11
+ .btn-xl {
12
+ padding: 1.25rem 2.5rem;
13
+ }
14
+
15
+ .content-section {
16
+ padding-top: 7.5rem;
17
+ padding-bottom: 7.5rem;
18
+ }
19
+
20
+ .content-section-heading h2 {
21
+ font-size: 3rem;
22
+ }
23
+
24
+ .content-section-heading h3 {
25
+ font-size: 1rem;
26
+ text-transform: uppercase;
27
+ }
28
+
29
+ h1,
30
+ h2,
31
+ h3,
32
+ h4,
33
+ h5,
34
+ h6 {
35
+ }
36
+
37
+ .text-faded {
38
+ color: rgba(255, 255, 255, 0.7);
39
+ }
40
+
41
+ /********************************************************/
42
+ /************************ Header ************************/
43
+ /********************************************************/
44
+ header .menu {
45
+ margin-top: 10px;
46
+ }
47
+
48
+ .menu ul {
49
+ margin:0;
50
+ padding: 0;
51
+ list-style: none;
52
+ text-decoration: none;
53
+ }
54
+
55
+ .menu ul li {
56
+ font-size:1.1em;
57
+ }
58
+
59
+
60
+ /* Map */
61
+ .map {
62
+ height: 30rem;
63
+ }
64
+
65
+ @media (max-width: 992px) {
66
+ .map {
67
+ height: 75%;
68
+ }
69
+ }
70
+
71
+ .map iframe {
72
+ pointer-events: none;
73
+ }
74
+
75
+ .scroll-to-top {
76
+ position: fixed;
77
+ right: 15px;
78
+ bottom: 15px;
79
+ display: none;
80
+ width: 50px;
81
+ height: 50px;
82
+ text-align: center;
83
+ color: white;
84
+ background: rgba(52, 58, 64, 0.5);
85
+ line-height: 45px;
86
+ }
87
+
88
+ .scroll-to-top:focus, .scroll-to-top:hover {
89
+ color: white;
90
+ }
91
+
92
+ .scroll-to-top:hover {
93
+ background: #343a40;
94
+ }
95
+
96
+ .scroll-to-top i {
97
+ font-weight: 800;
98
+ }
99
+
100
+ .masthead {
101
+ min-height: 30rem;
102
+ position: relative;
103
+ display: table;
104
+ width: 100%;
105
+ height: auto;
106
+ padding-top: 8rem;
107
+ padding-bottom: 8rem;
108
+ background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/bg-masthead.jpg");
109
+ background-position: center center;
110
+ background-repeat: no-repeat;
111
+ background-size: cover;
112
+ }
113
+
114
+ .masthead h1 {
115
+ font-size: 4rem;
116
+ margin: 0;
117
+ padding: 0;
118
+ }
119
+
120
+ @media (min-width: 600px) {
121
+ .masthead {
122
+ height: 100vh;
123
+ }
124
+ .masthead h1 {
125
+ font-size: 5.5rem;
126
+ }
127
+ }
128
+
129
+ /********************************************************/
130
+ /****************** Home - side menu ********************/
131
+ /********************************************************/
132
+ @media screen and (min-width: 600px) {
133
+ .menu-toggle {
134
+ visibility: hidden;
135
+ }
136
+
137
+ #sidebar-wrapper {
138
+ width: 100%;
139
+ z-index: 2;
140
+ position: absolute;
141
+ top: 0;
142
+ right:100px;
143
+ float: right;
144
+ width: 600px;
145
+ }
146
+
147
+ .sidebar-nav {
148
+ margin: 0;
149
+ padding: 0;
150
+ overflow: hidden;
151
+ list-style: none;
152
+ text-align: center;
153
+ }
154
+
155
+ .sidebar-nav li{
156
+ display: inline;
157
+ list-style: none;
158
+ }
159
+
160
+ .sidebar-nav li a{
161
+ display:inline-block;
162
+ text-decoration: none;
163
+ padding: 15px;
164
+ color: black;
165
+ }
166
+
167
+ .sidebar-nav > .sidebar-brand {
168
+ visibility: hidden;
169
+ }
170
+ }
171
+
172
+ @media screen and (max-width: 600px) {
173
+ #sidebar-wrapper {
174
+ position: fixed;
175
+ z-index: 2;
176
+ right: 0;
177
+ width: 250px;
178
+ height: 100%;
179
+ -webkit-transition: all 0.4s ease 0s;
180
+ -moz-transition: all 0.4s ease 0s;
181
+ -ms-transition: all 0.4s ease 0s;
182
+ -o-transition: all 0.4s ease 0s;
183
+ transition: all 0.4s ease 0s;
184
+ transform: translateX(250px);
185
+ background: #1D809F;
186
+ border-left: 1px solid rgba(255, 255, 255, 0.1);
187
+ }
188
+
189
+ .sidebar-nav {
190
+ position: absolute;
191
+ top: 0;
192
+ width: 250px;
193
+ margin: 0;
194
+ padding: 0;
195
+ list-style: none;
196
+ }
197
+
198
+ .sidebar-nav li.sidebar-nav-item a {
199
+ display: block;
200
+ text-decoration: none;
201
+ color: #fff;
202
+ padding: 15px;
203
+ }
204
+
205
+ .sidebar-nav li a:hover {
206
+ text-decoration: none;
207
+ color: #fff;
208
+ background: rgba(255, 255, 255, 0.2);
209
+ }
210
+
211
+ .sidebar-nav li a:active,
212
+ .sidebar-nav li a:focus {
213
+ text-decoration: none;
214
+ }
215
+
216
+ .sidebar-nav > .sidebar-brand {
217
+ font-size: 1.2rem;
218
+ background: rgba(52, 58, 64, 0.1);
219
+ height: 80px;
220
+ line-height: 50px;
221
+ padding-top: 15px;
222
+ padding-bottom: 15px;
223
+ padding-left: 15px;
224
+ }
225
+
226
+ .sidebar-nav > .sidebar-brand a {
227
+ color: #fff;
228
+ }
229
+
230
+ .sidebar-nav > .sidebar-brand a:hover {
231
+ color: #fff;
232
+ background: none;
233
+ }
234
+
235
+ #sidebar-wrapper.active {
236
+ right: 250px;
237
+ width: 250px;
238
+ -webkit-transition: all 0.4s ease 0s;
239
+ -moz-transition: all 0.4s ease 0s;
240
+ -ms-transition: all 0.4s ease 0s;
241
+ -o-transition: all 0.4s ease 0s;
242
+ transition: all 0.4s ease 0s;
243
+ }
244
+ }
245
+
246
+ #cta-button {
247
+ font-weight: 300;
248
+ }
249
+
250
+ .desc-font {
251
+ font-size: 1.3em;
252
+ font-weight: 300;
253
+ }
254
+
255
+ .menu-toggle {
256
+ position: fixed;
257
+ right: 15px;
258
+ top: 15px;
259
+ width: 50px;
260
+ height: 50px;
261
+ text-align: center;
262
+ color: #fff;
263
+ background: rgba(52, 58, 64, 0.5);
264
+ line-height: 50px;
265
+ z-index: 999;
266
+ }
267
+
268
+ .menu-toggle:focus, .menu-toggle:hover {
269
+ color: #fff;
270
+ }
271
+
272
+ .menu-toggle:hover {
273
+ background: #343a40;
274
+ }
275
+
276
+ .service-icon {
277
+ background-color: #fff;
278
+ color: #1D809F;
279
+ height: 7rem;
280
+ width: 7rem;
281
+ display: block;
282
+ line-height: 7.5rem;
283
+ font-size: 2.25rem;
284
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
285
+ }
286
+
287
+ .callout {
288
+ padding: 15rem 0;
289
+ background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/bg-callout.jpg");
290
+ background-position: center center;
291
+ background-repeat: no-repeat;
292
+ background-size: cover;
293
+ }
294
+
295
+ .callout h2 {
296
+ font-size: 3.5rem;
297
+ font-weight: 700;
298
+ display: block;
299
+ max-width: 30rem;
300
+ }
301
+
302
+ /********************************************************/
303
+ /****************** Home - portfolio ********************/
304
+ /********************************************************/
305
+ .portfolio-item {
306
+ display: block;
307
+ position: relative;
308
+ overflow: hidden;
309
+ max-width: 530px;
310
+ margin: auto auto 1rem;
311
+ }
312
+
313
+ .portfolio-item .caption {
314
+ display: flex;
315
+ height: 100%;
316
+ width: 100%;
317
+ background-color: rgba(33, 37, 41, 0.2);
318
+ position: absolute;
319
+ top: 0;
320
+ bottom: 0;
321
+ z-index: 1;
322
+ }
323
+
324
+ .portfolio-item .caption .caption-content {
325
+ color: #fff;
326
+ margin: auto 2rem 2rem;
327
+ }
328
+
329
+ .portfolio-item .caption .caption-content h2 {
330
+ font-size: 0.8rem;
331
+ text-transform: uppercase;
332
+ }
333
+
334
+ .portfolio-item .caption .caption-content p {
335
+ font-weight: 300;
336
+ font-size: 1.2rem;
337
+ }
338
+
339
+ @media (min-width: 992px) {
340
+ .portfolio-item {
341
+ max-width: none;
342
+ margin: 0;
343
+ }
344
+ .portfolio-item .caption {
345
+ -webkit-transition: -webkit-clip-path 0.25s ease-out, background-color 0.7s;
346
+ -webkit-clip-path: inset(0px);
347
+ clip-path: inset(0px);
348
+ }
349
+ .portfolio-item .caption .caption-content {
350
+ transition: opacity 0.25s;
351
+ margin-left: 5rem;
352
+ margin-right: 5rem;
353
+ margin-bottom: 5rem;
354
+ }
355
+ .portfolio-item img {
356
+ -webkit-transition: -webkit-clip-path 0.25s ease-out;
357
+ -webkit-clip-path: inset(-1px);
358
+ clip-path: inset(-1px);
359
+ }
360
+ .portfolio-item:hover img {
361
+ -webkit-clip-path: inset(2rem);
362
+ clip-path: inset(2rem);
363
+ }
364
+ .portfolio-item:hover .caption {
365
+ background-color: rgba(29, 128, 159, 0.9);
366
+ -webkit-clip-path: inset(2rem);
367
+ clip-path: inset(2rem);
368
+ }
369
+ }
370
+
371
+
372
+ /********************************************************/
373
+ /************************ Footer ************************/
374
+ /********************************************************/
375
+ footer.footer {
376
+ padding-top: 5rem;
377
+ padding-bottom: 5rem;
378
+ }
379
+
380
+ footer.footer .social-link {
381
+ display: block;
382
+ height: 4rem;
383
+ width: 4rem;
384
+ line-height: 4.3rem;
385
+ font-size: 1.5rem;
386
+ background-color: #1D809F;
387
+ transition: background-color 0.15s ease-in-out;
388
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
389
+ }
390
+
391
+ footer.footer .social-link:hover {
392
+ background-color: #155d74;
393
+ text-decoration: none;
394
+ }
395
+
396
+ a {
397
+ color: #1D809F;
398
+ }
399
+
400
+ a:hover, a:focus, a:active {
401
+ color: #155d74;
402
+ }
403
+
404
+ .btn-primary {
405
+ background-color: #1D809F !important;
406
+ border-color: #1D809F !important;
407
+ color: #fff !important;
408
+ }
409
+
410
+ .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
411
+ background-color: #155d74 !important;
412
+ border-color: #155d74 !important;
413
+ }
414
+
415
+ .btn-secondary {
416
+ background-color: #ecb807 !important;
417
+ border-color: #ecb807 !important;
418
+ color: #fff !important;
419
+ }
420
+
421
+ .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
422
+ background-color: #ba9106 !important;
423
+ border-color: #ba9106 !important;
424
+ }
425
+
426
+ .btn-dark {
427
+ color: #fff !important;
428
+ }
429
+
430
+ .btn {
431
+ box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
432
+ font-weight: 700;
433
+ }
434
+
435
+ .bg-primary {
436
+ background-color: #1D809F !important;
437
+ }
438
+
439
+ .text-primary {
440
+ color: #1D809F !important;
441
+ }
442
+
443
+ .text-secondary {
444
+ color: #ecb807 !important;
445
+ }