prettydocs-jekyll 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +7 -0
  3. data/_data/default/base.yml +20 -0
  4. data/_data/default/cards.yml +35 -0
  5. data/_data/default/contact.yml +24 -0
  6. data/_data/default/faqs.yml +46 -0
  7. data/_includes/_partials/post.html +32 -0
  8. data/_includes/_partials/social-buttons.html +12 -0
  9. data/_includes/_partials/toc.html +43 -0
  10. data/_includes/_sections/blog_post.html +33 -0
  11. data/_includes/_sections/cards.html +25 -0
  12. data/_includes/_sections/contact.html +25 -0
  13. data/_includes/_sections/faqs.html +28 -0
  14. data/_includes/_sections/not-found.html +11 -0
  15. data/_includes/_sections/resources.html +68 -0
  16. data/_includes/_theme/footer.html +19 -0
  17. data/_includes/_theme/head.html +42 -0
  18. data/_includes/_theme/header.html +34 -0
  19. data/_includes/_theme/js.html +7 -0
  20. data/_includes/_utils/common +24 -0
  21. data/_includes/_utils/month +17 -0
  22. data/_layouts/compress.html +9 -0
  23. data/_layouts/default.html +19 -0
  24. data/_layouts/faqs.html +20 -0
  25. data/_layouts/landing.html +18 -0
  26. data/_layouts/page.html +15 -0
  27. data/_layouts/post.html +5 -0
  28. data/_sass/globals/_base.scss +44 -0
  29. data/_sass/globals/_mixins.scss +175 -0
  30. data/_sass/partials/_base.scss +109 -0
  31. data/_sass/partials/_buttons.scss +97 -0
  32. data/_sass/partials/_cards.scss +170 -0
  33. data/_sass/partials/_contact.scss +29 -0
  34. data/_sass/partials/_doc.scss +523 -0
  35. data/_sass/partials/_footer.scss +8 -0
  36. data/_sass/partials/_header.scss +91 -0
  37. data/_sass/partials/_helper.scss +42 -0
  38. data/_sass/partials/_landing.scss +61 -0
  39. data/_sass/partials/_post.scss +32 -0
  40. data/_sass/partials/_resources.scss +10 -0
  41. data/_sass/partials/_toc.scss +163 -0
  42. data/_sass/prettydocs-jekyll.scss +20 -0
  43. data/_sass/vendor/_timeline.scss +221 -0
  44. data/_sass/vendor/timeline/functions/desaturated-lighten.scss +7 -0
  45. data/_sass/vendor/timeline/functions/map-deep-get.scss +9 -0
  46. data/_sass/vendor/timeline/functions/map-set.scss +5 -0
  47. data/_sass/vendor/timeline/functions/mutate-colors.scss +9 -0
  48. data/_sass/vendor/timeline/mixins/timeline-element.scss +23 -0
  49. data/_sass/vendor/timeline/mixins/timeline-event-variant.scss +20 -0
  50. data/_sass/vendor/timeline/mixins/timeline-item-arrow-color-variant.scss +6 -0
  51. data/_sass/vendor/timeline/mixins/timeline-item-arrow-size-variant.scss +17 -0
  52. data/_sass/vendor/timeline/mixins/timeline-item-right-side-position.scss +21 -0
  53. data/_sass/vendor/timeline/mixins/timeline-item-start-margins.scss +9 -0
  54. data/_sass/vendor/timeline/mixins/timeline-item-variant.scss +28 -0
  55. data/_sass/vendor/timeline/mixins/timeline-label-variant.scss +3 -0
  56. data/_sass/vendor/timeline/mixins/timeline-line-variant.scss +5 -0
  57. data/_sass/vendor/timeline/mixins/timeline-point-color-variant.scss +4 -0
  58. data/_sass/vendor/timeline/mixins/timeline-point-size-variant.scss +12 -0
  59. data/_sass/vendor/timeline/mixins/timeline-responsive-variant.scss +26 -0
  60. data/_sass/vendor/timeline/mixins/timeline-row-clearfix.scss +10 -0
  61. data/_sass/vendor/timeline/mixins/timeline-single-column.scss +56 -0
  62. data/_sass/vendor/timeline/mixins/transform-center.scss +3 -0
  63. data/_sass/vendor/timeline/variables.scss +90 -0
  64. data/assets/css/main.scss +4 -0
  65. data/assets/images/empty.gif +0 -0
  66. data/assets/images/favicon.ico +0 -0
  67. data/assets/js/main.js +45 -0
  68. metadata +182 -0
@@ -0,0 +1,109 @@
1
+ body {
2
+ font-family: 'Open Sans', arial, sans-serif;
3
+ background-color: #f9f9fb;
4
+ color: $text-color;
5
+ font-size: 14px;
6
+ -webkit-font-smoothing: antialiased;
7
+ -moz-osx-font-smoothing: grayscale;
8
+ }
9
+
10
+ html, body {
11
+ height: 100%;
12
+ }
13
+
14
+ .page-wrapper {
15
+ min-height: 100%;
16
+ /* equal to footer height */
17
+ margin-bottom: -75px;
18
+ &:after {
19
+ content: "";
20
+ display: block;
21
+ height: 75px;
22
+ }
23
+ }
24
+
25
+ .footer {
26
+ height: 75px;
27
+ }
28
+
29
+ p {
30
+ line-height: 1.5;
31
+ }
32
+
33
+ a {
34
+ color: darken($color-primary, 5%);
35
+ @include transition (all 0.4s ease-in-out);
36
+ &:hover {
37
+ text-decoration: underline;
38
+ color: darken($color-primary, 10%);
39
+ }
40
+ &:focus {
41
+ text-decoration: none;
42
+ }
43
+ }
44
+
45
+
46
+ code {
47
+ background: #222;
48
+ color: #fff;
49
+ font-size: 14px;
50
+ font-weight: bold;
51
+ font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
52
+ padding:2px 8px;
53
+ padding-top: 4px;
54
+ display: inline-block;
55
+ }
56
+
57
+
58
+
59
+ .form-control {
60
+ @include box-shadow(none);
61
+ height: 40px;
62
+ border-color: $divider;
63
+ @include placeholder(lighten($grey, 5%));
64
+ &:focus {
65
+ border-color: darken($divider, 5%);
66
+ @include box-shadow(none);
67
+ }
68
+ }
69
+
70
+ input[type="text"],
71
+ input[type="email"],
72
+ input[type="password"],
73
+ input[type="submit"],
74
+ input[type="button"],
75
+ textarea,
76
+ select {
77
+ appearance: none; /* for mobile safari */
78
+ -webkit-appearance: none;
79
+ }
80
+
81
+ #topcontrol {
82
+ background: $color-primary;
83
+ color: #fff;
84
+ text-align: center;
85
+ display: inline-block;
86
+ width: 35px;
87
+ height: 35px;
88
+ border: none;
89
+ @include border-radius(4px);
90
+ @include transition (all 0.4s ease-in-out);
91
+ z-index: 30;
92
+ &:hover {
93
+ background: lighten($color-primary, 5%);
94
+ }
95
+ .fa {
96
+ position: relative;
97
+ top: 3px;
98
+ font-size: 25px;
99
+ }
100
+ }
101
+
102
+ .video-container iframe {
103
+ max-width: 100%;
104
+ }
105
+
106
+ .vertical-align {
107
+ display: flex;
108
+ align-items: center;
109
+ }
@@ -0,0 +1,97 @@
1
+ .btn, a.btn {
2
+ @include transition (all 0.4s ease-in-out);
3
+ font-weight: 600;
4
+ font-size: 14px;
5
+ line-height: 1.5;
6
+ .fa {
7
+ margin-right: 5px;
8
+ }
9
+ }
10
+
11
+ .btn-primary, a.btn-primary {
12
+ background: $color-primary;
13
+ border: 1px solid $color-primary;
14
+ color: #fff !important;
15
+ &:hover, &:focus, &:active, &.active, &.hover {
16
+ background: darken($color-primary, 5%);
17
+ color: #fff !important;
18
+ border: 1px solid darken($color-primary, 5%);
19
+ }
20
+ }
21
+
22
+ .btn-green, a.btn-green {
23
+ background: $color-green;
24
+ border: 1px solid $color-green;
25
+ color: #fff !important;
26
+ &:hover, &:focus, &:active, &.active, &.hover {
27
+ background: darken($color-green, 5%);
28
+ color: #fff !important;
29
+ border: 1px solid darken($color-green, 5%);
30
+ }
31
+ .body-green & {
32
+ color: #fff !important;
33
+ &:hover, &:focus, &:active, &.active, &.hover {
34
+ color: #fff !important;
35
+ }
36
+ }
37
+ }
38
+
39
+ .btn-blue, a.btn-blue {
40
+ background: $color-blue;
41
+ border: 1px solid $color-blue;
42
+ color: #fff !important;
43
+ &:hover, &:focus, &:active, &.active, &.hover {
44
+ background: darken($color-blue, 5%);
45
+ color: #fff !important;
46
+ border: 1px solid darken($color-blue, 5%);
47
+ }
48
+ }
49
+
50
+ .btn-orange, a.btn-orange {
51
+ background: $color-orange;
52
+ border: 1px solid $color-orange;
53
+ color: #fff !important;
54
+ &:hover, &:focus, &:active, &.active, &.hover {
55
+ background: darken($color-orange, 5%);
56
+ color: #fff !important;
57
+ border: 1px solid darken($color-orange, 5%);
58
+ }
59
+ }
60
+
61
+ .btn-red, a.btn-red {
62
+ background: $color-red;
63
+ border: 1px solid $color-red;
64
+ color: #fff !important;
65
+ &:hover, &:focus, &:active, &.active, &.hover {
66
+ background: darken($color-red, 5%);
67
+ color: #fff !important;
68
+ border: 1px solid darken($color-red, 5%);
69
+ }
70
+ }
71
+
72
+ .btn-pink, a.btn-pink {
73
+ background: $color-pink;
74
+ border: 1px solid $color-pink;
75
+ color: #fff !important;
76
+ &:hover, &:focus, &:active, &.active, &.hover {
77
+ background: darken($color-pink, 5%);
78
+ color: #fff !important;
79
+ border: 1px solid darken($color-pink, 5%);
80
+ }
81
+
82
+ }
83
+
84
+ .btn-purple, a.btn-purple {
85
+ background: $color-purple;
86
+ border: 1px solid $color-purple;
87
+ color: #fff !important;
88
+ &:hover, &:focus, &:active, &.active, &.hover {
89
+ background: darken($color-purple, 5%);
90
+ color: #fff !important;
91
+ border: 1px solid darken($color-purple, 5%);
92
+ }
93
+ }
94
+
95
+ .btn-cta {
96
+ padding: 7px 15px;
97
+ }
@@ -0,0 +1,170 @@
1
+ .cards-section {
2
+ padding: 60px 0;
3
+ background: $smoky-grey;
4
+
5
+ .title {
6
+ margin-top: 0;
7
+ margin-bottom: 15px;
8
+ font-size: 24px;
9
+ font-weight: 600;
10
+ }
11
+
12
+ .intro {
13
+ margin: 0 auto;
14
+ max-width: 800px;
15
+ margin-bottom: 60px;
16
+ color: $text-color-secondary;
17
+ }
18
+
19
+ .cards-wrapper {
20
+ max-width: 860px;
21
+ margin-left: auto;
22
+ margin-right: auto;
23
+ }
24
+
25
+ .item {
26
+ margin-bottom: 30px;
27
+
28
+ .icon-holder {
29
+ margin-bottom: 15px;
30
+ }
31
+ .icon {
32
+ font-size: 36px;
33
+ }
34
+ .title {
35
+ font-size: 16px;
36
+ font-weight: 600;
37
+ }
38
+ .intro {
39
+ margin-bottom: 15px;
40
+ }
41
+
42
+ }
43
+
44
+ .item-inner {
45
+ padding: 45px 30px;
46
+ background:#fff;
47
+ position: relative;
48
+ border: 1px solid $divider;
49
+ @include border-radius(4px);
50
+
51
+ .link {
52
+ position:absolute;
53
+ width:100%;
54
+ height:100%;
55
+ top:0;
56
+ left: 0;
57
+ z-index: 1;
58
+ }
59
+
60
+ &:hover {
61
+ background: $smoky-white;
62
+ }
63
+
64
+ }
65
+
66
+ .item-primary {
67
+ .item-inner {
68
+ border-top: 3px solid $color-primary;
69
+ &:hover {
70
+ .title {
71
+ color: darken($color-primary, 15%);
72
+ }
73
+ }
74
+ }
75
+ .icon {
76
+ color: $color-primary;
77
+ }
78
+
79
+ }
80
+
81
+ .item-green {
82
+ .item-inner {
83
+ border-top: 3px solid $color-green;
84
+ &:hover {
85
+ .title {
86
+ color: darken($color-green, 15%);
87
+ }
88
+ }
89
+ }
90
+ .icon {
91
+ color: $color-green;
92
+ }
93
+
94
+ }
95
+
96
+ .item-blue {
97
+ .item-inner {
98
+ border-top: 3px solid $color-blue;
99
+ &:hover {
100
+ .title {
101
+ color: darken($color-blue, 15%);
102
+ }
103
+ }
104
+ }
105
+ .icon {
106
+ color: $color-blue;
107
+ }
108
+ }
109
+ .item-orange {
110
+ .item-inner {
111
+ border-top: 3px solid $color-orange;
112
+ &:hover {
113
+ .title {
114
+ color: darken($color-orange, 15%);
115
+ }
116
+ }
117
+ }
118
+ .icon {
119
+ color: $color-orange;
120
+ }
121
+ }
122
+ .item-red {
123
+ .item-inner {
124
+ border-top: 3px solid $color-red;
125
+ &:hover {
126
+ .title {
127
+ color: darken($color-red, 15%);
128
+ }
129
+ }
130
+ }
131
+ .icon {
132
+ color: $color-red;
133
+ }
134
+ }
135
+ .item-pink {
136
+ .item-inner {
137
+ border-top: 3px solid $color-pink;
138
+ &:hover {
139
+ .title {
140
+ color: darken($color-pink, 15%);
141
+ }
142
+ }
143
+ }
144
+ .icon {
145
+ color: $color-pink;
146
+ }
147
+ }
148
+
149
+ .item-purple {
150
+ .item-inner {
151
+ border-top: 3px solid $color-purple;
152
+ &:hover {
153
+ .title {
154
+ color: darken($color-purple, 15%);
155
+ }
156
+ }
157
+ }
158
+ .icon {
159
+ color: $color-purple;
160
+ }
161
+ }
162
+
163
+ }
164
+
165
+ /* Extra small devices (phones, less than 768px) */
166
+ @media (max-width: 767px) {
167
+ .cards-section .item-inner {
168
+ padding: 30px 15px;
169
+ }
170
+ }
@@ -0,0 +1,29 @@
1
+ .contact {
2
+
3
+ .jumbotron {
4
+ h1 {
5
+ font-size: 28px;
6
+ margin-top: 0;
7
+ margin-bottom: 30px;
8
+ }
9
+ }
10
+
11
+ .bubble {
12
+ background: #fff;
13
+ @include border-radius(4px);
14
+ padding: 30px;
15
+ margin-top: 20px;
16
+ margin-bottom: 30px;
17
+ position: relative;
18
+
19
+ .jumbotron & {
20
+
21
+ p {
22
+ font-size: 14px;
23
+ font-weight: normal;
24
+ color: $text-color-secondary;
25
+ }
26
+ }
27
+ }
28
+
29
+ }
@@ -0,0 +1,523 @@
1
+ /* ======= Doc Styling ======= */
2
+ .doc-wrapper {
3
+ padding: 45px 0;
4
+ background: $smoky-grey;
5
+ }
6
+
7
+ .doc-body {
8
+ position: relative;
9
+ }
10
+
11
+ .doc-header {
12
+ margin-bottom: 30px;
13
+ .doc-title {
14
+ color: $color-primary;
15
+ margin-top: 0;
16
+ font-size: 36px;
17
+ .body-green & {
18
+ color: $color-green;
19
+ }
20
+ .body-blue & {
21
+ color: $color-blue;
22
+ }
23
+ .body-orange & {
24
+ color: $color-orange;
25
+ }
26
+ .body-red & {
27
+ color: $color-red;
28
+ }
29
+ .body-pink & {
30
+ color: $color-pink;
31
+ }
32
+ .body-purple & {
33
+ color: $color-purple;
34
+ }
35
+ }
36
+ .icon {
37
+ font-size: 30px;
38
+ }
39
+ .meta {
40
+ color: $grey;
41
+ }
42
+ }
43
+
44
+ .doc-content {
45
+ margin-left: 230px;
46
+ }
47
+
48
+
49
+ .doc-section {
50
+ padding-top: 15px;
51
+ padding-bottom: 15px;
52
+ .section-title {
53
+ font-size: 26px;
54
+ margin-top: 0;
55
+ margin-bottom: 0;
56
+ font-weight: bold;
57
+ padding-bottom: 10px;
58
+ border-bottom: 1px solid darken($divider, 10%);
59
+ }
60
+
61
+ h1 {
62
+ font-size: 24px;
63
+ font-weight: bold;
64
+ }
65
+ h2 {
66
+ font-size: 22px;
67
+ font-weight: bold;
68
+ }
69
+ h3 {
70
+ font-size: 20px;
71
+ font-weight: bold;
72
+ }
73
+ h4 {
74
+ font-size: 18px;
75
+ font-weight: bold;
76
+ }
77
+ h5 {
78
+ font-size: 16px;
79
+ font-weight: bold;
80
+ }
81
+ h6 {
82
+ font-size: 14px;
83
+ font-weight: bold;
84
+ }
85
+ }
86
+
87
+ .section-block {
88
+ padding-top: 15px;
89
+ padding-bottom: 15px;
90
+ .block-title {
91
+ margin-top: 0;
92
+ }
93
+ .list {
94
+ &>li {
95
+ margin-bottom: 10px;
96
+ }
97
+ ul {
98
+ &> li {
99
+ margin-top:5px;
100
+ }
101
+ }
102
+ }
103
+
104
+ }
105
+
106
+ .question {
107
+
108
+ font-weight: 400 !important;
109
+ color: darken($color-primary, 5%);
110
+ .body-green {
111
+ color: darken($color-green, 5%);
112
+ }
113
+ .body-blue & {
114
+ color: darken($color-blue, 5%);
115
+ }
116
+ .body-orange &{
117
+ color: darken($color-orange, 5%);
118
+ }
119
+ .body-pink &{
120
+ color: darken($color-pink, 5%);
121
+ }
122
+ .body-purple &{
123
+ color: darken($color-purple, 5%);
124
+ }
125
+ .fa {
126
+ @include opacity(0.6);
127
+ }
128
+ .label {
129
+ font-size: 11px;
130
+ vertical-align: middle;
131
+ }
132
+ }
133
+
134
+ .answer {
135
+ color: $text-color-secondary;
136
+ }
137
+
138
+ .code-block {
139
+ margin-top: 30px;
140
+ margin-bottom: 30px;
141
+ }
142
+
143
+ .callout-block {
144
+ padding: 30px;
145
+ @include border-radius(4px);
146
+ position: relative;
147
+ margin-bottom: 30px;
148
+ a {
149
+ color: rgba(0, 0, 0, 0.55) !important;
150
+ &:hover {
151
+ color: rgba(0, 0, 0, 0.65) !important;
152
+ }
153
+ }
154
+ .icon-holder {
155
+ font-size: 30px;
156
+ position: absolute;
157
+ left: 30px;
158
+ top: 30px;
159
+ color: rgba(0, 0, 0, 0.25);
160
+ }
161
+ .content {
162
+ margin-left: 60px;
163
+ p {
164
+ &:last-child {
165
+ margin-bottom: 0;
166
+ }
167
+ }
168
+ }
169
+ .callout-title {
170
+ margin-top: 0;
171
+ margin-bottom: 5px;
172
+ color: rgba(0, 0, 0, 0.65);
173
+ }
174
+ }
175
+
176
+ .callout-info {
177
+ background: $color-blue;
178
+ color: #fff;
179
+ }
180
+
181
+ .callout-success {
182
+ background: $color-green;
183
+ color: #fff;
184
+ }
185
+
186
+ .callout-warning {
187
+ background: $color-orange;
188
+ color: #fff;
189
+ }
190
+
191
+ .callout-danger {
192
+ background: $color-red;
193
+ color: #fff;
194
+ }
195
+
196
+ .table>thead>tr>th {
197
+ border-bottom-color: lighten($color-primary, 20%);
198
+ .body-green & {
199
+ border-bottom-color: lighten($color-green, 20%);
200
+ }
201
+ .body-blue & {
202
+ border-bottom-color: lighten($color-blue, 20%);
203
+ }
204
+ .body-orange & {
205
+ border-bottom-color: lighten($color-orange, 20%);
206
+ }
207
+ .body-pink & {
208
+ border-bottom-color: lighten($color-pink, 20%);
209
+ }
210
+ .body-purple & {
211
+ border-bottom-color: lighten($color-purple, 20%);
212
+ }
213
+ }
214
+ .table-bordered>thead>tr>th {
215
+ border-bottom-color: inherit;
216
+ }
217
+
218
+ .table-striped>tbody>tr:nth-of-type(odd) {
219
+ background-color: $smoky-white;
220
+ }
221
+
222
+
223
+ .screenshot-holder {
224
+ margin-top: 15px;
225
+ margin-bottom: 15px;
226
+ position: relative;
227
+ text-align: center;
228
+ img {
229
+ border: 1px solid $divider;
230
+ }
231
+ .mask {
232
+ display: block;
233
+ visibility: hidden;
234
+ position: absolute;
235
+ width: 100%;
236
+ height: 100%;
237
+ left: 0;
238
+ top: 0;
239
+ background: rgba(0, 0, 0, 0.25);
240
+ cursor: pointer;
241
+ text-decoration: none;
242
+ .icon {
243
+ color: #fff;
244
+ font-size: 42px;
245
+ display: block;
246
+ position: absolute;
247
+ width: 100%;
248
+ height: 100%;
249
+ top: 50%;
250
+ margin-top: -21px;
251
+
252
+ }
253
+ }
254
+ &:hover {
255
+ .mask {
256
+ visibility: visible;
257
+ }
258
+ }
259
+ }
260
+
261
+ .card {
262
+ text-align: center;
263
+ border: 1px solid darken($divider, 5%);
264
+ @include border-radius(4px);
265
+ margin-bottom: 30px;
266
+ position: relative;
267
+
268
+ .card-block {
269
+ padding: 15px;
270
+ }
271
+ .mask {
272
+ display: block;
273
+ visibility: hidden;
274
+ position: absolute;
275
+ width: 100%;
276
+ height: 100%;
277
+ left: 0;
278
+ top: 0;
279
+ background: rgba(0, 0, 0, 0.25);
280
+ cursor: pointer;
281
+ text-decoration: none;
282
+ .icon {
283
+
284
+ color: #fff;
285
+ font-size: 42px;
286
+ margin-top: 25%;
287
+ }
288
+ }
289
+ &:hover {
290
+ .mask {
291
+ visibility: visible;
292
+ }
293
+ }
294
+ }
295
+
296
+
297
+ /* Color Schemes */
298
+ .body-green {
299
+ .header {
300
+ border-color: $color-green;
301
+ }
302
+ a {
303
+ color: $color-green;
304
+ &:hover {
305
+ color: darken($color-green, 10%);
306
+ }
307
+ }
308
+ }
309
+ .body-blue {
310
+ .header {
311
+ border-color: $color-blue;
312
+ }
313
+ a {
314
+ color: $color-blue;
315
+ &:hover {
316
+ color: darken($color-blue, 10%);
317
+ }
318
+ }
319
+ }
320
+
321
+ .body-orange {
322
+ .header {
323
+ border-color: $color-orange;
324
+ }
325
+ a {
326
+ color: $color-orange;
327
+ &:hover {
328
+ color: darken($color-orange, 10%);
329
+ }
330
+ }
331
+ }
332
+
333
+ .body-pink {
334
+ .header {
335
+ border-color: $color-pink;
336
+ }
337
+ a {
338
+ color: $color-pink;
339
+ &:hover {
340
+ color: darken($color-pink, 10%);
341
+ }
342
+ }
343
+ }
344
+
345
+ .body-purple {
346
+ .header {
347
+ border-color: $color-purple;
348
+ }
349
+ a {
350
+ color: $color-purple;
351
+ &:hover {
352
+ color: darken($color-purple, 10%);
353
+ }
354
+ }
355
+ }
356
+
357
+ .body-red {
358
+ .header {
359
+ border-color: $color-red;
360
+ }
361
+ a {
362
+ color: $color-red;
363
+ &:hover {
364
+ color: darken($color-red, 10%);
365
+ }
366
+ }
367
+ }
368
+
369
+
370
+ /* ===== Promo block ===== */
371
+ .promo-block {
372
+ background: darken($color-primary, 5%);
373
+ .body-green & {
374
+ background: darken($color-green, 5%);
375
+ }
376
+ .body-blue & {
377
+ background: darken($color-blue, 5%);
378
+ }
379
+ .body-orange &{
380
+ background: darken($color-orange, 5%);
381
+ }
382
+ .body-pink &{
383
+ background: darken($color-pink, 5%);
384
+ }
385
+ .body-purple &{
386
+ background: darken($color-purple, 5%);
387
+ }
388
+
389
+
390
+ a {
391
+ color: rgba(0, 0, 0, 0.5);
392
+ &:hover {
393
+ color: rgba(0, 0, 0, 0.6);
394
+ }
395
+ }
396
+ .promo-block-inner {
397
+ padding: 45px;
398
+ color: #fff;
399
+ @include border-radius(4px);
400
+
401
+ }
402
+ .promo-title {
403
+ font-size: 20px;
404
+ font-weight: 800;
405
+ margin-top:0;
406
+ margin-bottom: 45px;
407
+ .fa {
408
+ color: rgba(0, 0, 0, 0.5);
409
+ }
410
+ }
411
+ .figure-holder-inner {
412
+ background: #fff;
413
+ margin-bottom: 30px;
414
+ position: relative;
415
+ text-align: center;
416
+ img {
417
+ border: 5px solid #fff;
418
+ }
419
+ .mask {
420
+ display: block;
421
+ visibility: hidden;
422
+ position: absolute;
423
+ width: 100%;
424
+ height: 100%;
425
+ left: 0;
426
+ top: 0;
427
+ background: rgba(256, 256, 256, 0.65);
428
+ cursor: pointer;
429
+ text-decoration: none;
430
+ .icon {
431
+ color: #fff;
432
+ font-size: 42px;
433
+ display: block;
434
+ position: absolute;
435
+ width: 100%;
436
+ height: 100%;
437
+ top: 50%;
438
+ margin-top: -21px;
439
+ &.pink {
440
+ color: $color-pink;
441
+ }
442
+
443
+ }
444
+ }
445
+ &:hover {
446
+ .mask {
447
+ visibility: visible;
448
+ }
449
+ }
450
+
451
+ }
452
+
453
+ .content-holder-inner {
454
+ padding-left: 15px;
455
+ padding-right: 15px;
456
+ }
457
+
458
+ .content-title {
459
+ font-size: 16px;
460
+ font-weight: 600;
461
+ margin-top: 0;
462
+ }
463
+
464
+ .highlight {
465
+ color: rgba(0, 0, 0, 0.4);
466
+ }
467
+
468
+ .btn-cta {
469
+ background: rgba(0, 0, 0, 0.35);
470
+ border: none;
471
+ color: #fff !important;
472
+ margin-bottom: 15px;
473
+ &:hover {
474
+ background: rgba(0, 0, 0, 0.5);
475
+ border: none;
476
+ color: #fff !important;
477
+ }
478
+ }
479
+ }
480
+
481
+ /* Extra small devices (phones, less than 768px) */
482
+ @media (max-width: 767px) {
483
+ .doc-content {
484
+ margin-left: 0;
485
+ }
486
+
487
+ .jumbotron {
488
+ padding: 30px 15px;
489
+ h1 {
490
+ font-size: 24px;
491
+ margin-bottom: 15px;
492
+ }
493
+ p {
494
+ font-size: 18px;
495
+ }
496
+ }
497
+ .promo-block .promo-block-inner {
498
+ padding: 30px 15px;
499
+ }
500
+
501
+ .promo-block .content-holder-inner {
502
+ padding: 0;
503
+ }
504
+ .promo-block .promo-title {
505
+ margin-bottom: 30px;
506
+ }
507
+
508
+ }
509
+
510
+ /* Small devices (tablets, 768px and up) */
511
+ @media (min-width: 768px) {
512
+
513
+ }
514
+
515
+ /* Medium devices (desktops, 992px and up) */
516
+ @media (min-width: 992px) {
517
+
518
+ }
519
+
520
+ /* Large devices (large desktops, 1200px and up) */
521
+ @media (min-width: 1200px) {
522
+
523
+ }