vbax-template_go 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 (63) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +21 -0
  5. data/README.md +39 -0
  6. data/Rakefile +2 -0
  7. data/bin/console +14 -0
  8. data/bin/setup +8 -0
  9. data/lib/vbax/sass/template_go.scss +2 -0
  10. data/lib/vbax/sass/template_go/components/_accordion.scss +436 -0
  11. data/lib/vbax/sass/template_go/components/_badges.scss +35 -0
  12. data/lib/vbax/sass/template_go/components/_blog.scss +321 -0
  13. data/lib/vbax/sass/template_go/components/_boxes.scss +169 -0
  14. data/lib/vbax/sass/template_go/components/_breadcrumbs.scss +88 -0
  15. data/lib/vbax/sass/template_go/components/_buttons.scss +145 -0
  16. data/lib/vbax/sass/template_go/components/_cards.scss +129 -0
  17. data/lib/vbax/sass/template_go/components/_carousel.scss +260 -0
  18. data/lib/vbax/sass/template_go/components/_components.scss +31 -0
  19. data/lib/vbax/sass/template_go/components/_docs.scss +107 -0
  20. data/lib/vbax/sass/template_go/components/_dropdowns.scss +115 -0
  21. data/lib/vbax/sass/template_go/components/_features.scss +50 -0
  22. data/lib/vbax/sass/template_go/components/_gallery.scss +104 -0
  23. data/lib/vbax/sass/template_go/components/_hero.scss +266 -0
  24. data/lib/vbax/sass/template_go/components/_icons.scss +53 -0
  25. data/lib/vbax/sass/template_go/components/_jobs.scss +24 -0
  26. data/lib/vbax/sass/template_go/components/_list.scss +111 -0
  27. data/lib/vbax/sass/template_go/components/_maps.scss +43 -0
  28. data/lib/vbax/sass/template_go/components/_masonry.scss +28 -0
  29. data/lib/vbax/sass/template_go/components/_modals.scss +48 -0
  30. data/lib/vbax/sass/template_go/components/_nav.scss +288 -0
  31. data/lib/vbax/sass/template_go/components/_navbar.scss +119 -0
  32. data/lib/vbax/sass/template_go/components/_partners.scss +27 -0
  33. data/lib/vbax/sass/template_go/components/_presentations.scss +173 -0
  34. data/lib/vbax/sass/template_go/components/_pricing.scss +111 -0
  35. data/lib/vbax/sass/template_go/components/_progress.scss +70 -0
  36. data/lib/vbax/sass/template_go/components/_swiper.scss +239 -0
  37. data/lib/vbax/sass/template_go/components/_syntax.scss +173 -0
  38. data/lib/vbax/sass/template_go/components/_tables.scss +140 -0
  39. data/lib/vbax/sass/template_go/components/_testimonials.scss +191 -0
  40. data/lib/vbax/sass/template_go/components/_users.scss +307 -0
  41. data/lib/vbax/sass/template_go/components/_video.scss +113 -0
  42. data/lib/vbax/sass/template_go/layout/_colors.scss +54 -0
  43. data/lib/vbax/sass/template_go/layout/_components.scss +253 -0
  44. data/lib/vbax/sass/template_go/layout/_content.scss +376 -0
  45. data/lib/vbax/sass/template_go/layout/_custom-forms.scss +367 -0
  46. data/lib/vbax/sass/template_go/layout/_footer.scss +39 -0
  47. data/lib/vbax/sass/template_go/layout/_forms.scss +103 -0
  48. data/lib/vbax/sass/template_go/layout/_header.scss +105 -0
  49. data/lib/vbax/sass/template_go/layout/_helpers.scss +9 -0
  50. data/lib/vbax/sass/template_go/layout/_icons.scss +5319 -0
  51. data/lib/vbax/sass/template_go/layout/_invert.scss +195 -0
  52. data/lib/vbax/sass/template_go/layout/_layout.scss +16 -0
  53. data/lib/vbax/sass/template_go/layout/_mixins.scss +110 -0
  54. data/lib/vbax/sass/template_go/layout/_overlay.scss +165 -0
  55. data/lib/vbax/sass/template_go/layout/_project.scss +172 -0
  56. data/lib/vbax/sass/template_go/layout/_sidebar.scss +12 -0
  57. data/lib/vbax/sass/template_go/layout/_sizing.scss +114 -0
  58. data/lib/vbax/sass/template_go/layout/_typography.scss +197 -0
  59. data/lib/vbax/template_go.rb +9 -0
  60. data/lib/vbax/template_go/engine.rb +14 -0
  61. data/lib/vbax/template_go/version.rb +5 -0
  62. data/vbax-template_go.gemspec +29 -0
  63. metadata +133 -0
@@ -0,0 +1,191 @@
1
+ // Testimonials
2
+ //
3
+ //
4
+ //
5
+
6
+ .blockquote {
7
+ position: relative;
8
+ margin: inherit;
9
+ padding: 2rem 0 0 2rem;
10
+ color: $black;
11
+
12
+ &::before {
13
+ content: '\201C';
14
+ position: absolute;
15
+ display: inline;
16
+ top: -3rem;
17
+ left: -1rem;
18
+ color: inherit;
19
+ font-family: $headings-font-family;
20
+ font-size: 30rem;
21
+ color: rgba($black, .1);
22
+ line-height: 1em;
23
+ z-index: 1;
24
+ }
25
+
26
+ p {
27
+ position: relative;
28
+ color: inherit;
29
+ font-size: 1.625rem;
30
+ font-family: $headings-font-family;
31
+ font-weight: $font-weight-light;
32
+ line-height: 1.5em;
33
+ z-index: 5;
34
+ }
35
+ }
36
+
37
+ .blockquote-footer {
38
+ position: relative;
39
+ margin-top: rem(10);
40
+ color: $gray-300;
41
+ z-index: 5;
42
+
43
+ &::before {
44
+ display: none;
45
+ }
46
+ }
47
+
48
+ %blockquote-text-white {
49
+ color: $white;
50
+
51
+ &::before {
52
+ color: rgba($white, .1);
53
+ }
54
+
55
+ .blockquote-footer {
56
+ color: $text-white-secondary;
57
+ }
58
+ }
59
+
60
+
61
+ //
62
+ // Blockquote List
63
+ //
64
+ .blockquote-list {
65
+ > * {
66
+ margin-right: 15%;
67
+ margin-bottom: 1.25rem;
68
+
69
+ &:last-child {
70
+ margin-bottom: 0;
71
+ }
72
+
73
+ &:nth-child(2n+2) {
74
+ margin-right: 0;
75
+ margin-left: 15%;
76
+ }
77
+ }
78
+ }
79
+
80
+ //
81
+ // Style 1
82
+ //
83
+ .blockquote-1 {
84
+ margin-right: 0;
85
+ }
86
+
87
+
88
+ //
89
+ // Style 2
90
+ //
91
+ .blockquote-2 {
92
+ border-radius: 0 2.5rem 2.5rem 2.5rem;
93
+ padding: 2.5rem 2.5rem 2.5rem 6.5rem;
94
+
95
+ &:nth-child(2n+2) {
96
+ border-top-left-radius: 2.5rem;
97
+ border-top-right-radius: 0;
98
+ }
99
+
100
+ &::before {
101
+ top: 2.25rem;
102
+ font-size: 6rem;
103
+ left: 2.5rem;
104
+ }
105
+
106
+ p {
107
+ font-size: $font-size-lg;
108
+ font-weight: $font-weight-normal;
109
+ }
110
+
111
+ .blockquote-footer {
112
+ &::before {
113
+ display: none;
114
+ }
115
+ }
116
+ }
117
+
118
+
119
+
120
+ //
121
+ // Review
122
+ //
123
+ .review-listing {
124
+
125
+ .owl-item {
126
+ padding: 6.25rem;
127
+
128
+ &.active + .active {
129
+ border-left: $border-width solid $border-color;
130
+ }
131
+ }
132
+ }
133
+
134
+ .review {
135
+ p {
136
+ margin-top: 50px;
137
+ font-size: 1.25rem;
138
+ font-family: $headings-font-family;
139
+ font-weight: $font-weight-light;
140
+ }
141
+ hr {
142
+ width: 25%;
143
+ margin-left: 0;
144
+ }
145
+ }
146
+
147
+ .review-score {
148
+ @include border-radius;
149
+ display: inline-block;
150
+ width: 5rem;
151
+ line-height: 5rem;
152
+ font-size: 1.5rem;
153
+ color: $white;
154
+ background: $primary;
155
+ text-align: center;
156
+ }
157
+
158
+ @include media-breakpoint-down(md) {
159
+ .review-listing {
160
+ .owl-item {
161
+ text-align: center;
162
+ padding: 6.25rem 0;
163
+ }
164
+
165
+ hr {
166
+ margin-left: auto;
167
+ margin-right: auto;
168
+ }
169
+ }
170
+ }
171
+
172
+
173
+
174
+
175
+ // text-whiteed Colors
176
+ //
177
+ //
178
+ .text-white {
179
+
180
+ .bubble {
181
+ &::before { color: inherit; }
182
+ p { color: $white; }
183
+ }
184
+
185
+ .testimonial {
186
+ p {
187
+ color: $text-white-primary;
188
+ }
189
+ }
190
+
191
+ }
@@ -0,0 +1,307 @@
1
+ // Users
2
+ //
3
+ //
4
+ //
5
+
6
+
7
+ .user {
8
+ @include border-radius;
9
+ position: relative;
10
+ overflow: hidden;
11
+
12
+ &:hover {
13
+ .user-caption {
14
+ padding-top: 6rem;
15
+ padding-bottom: 5.75rem;
16
+ }
17
+
18
+ .socials {
19
+ @include translate(0, 0);
20
+ }
21
+ }
22
+
23
+ &[class*="-circle"] {
24
+ border-radius: 50%;
25
+ overflow: hidden;
26
+ text-align: center;
27
+
28
+ .socials {
29
+ left: 50%;
30
+ @include translate(-50%, calc(100% + 2.5rem));
31
+ }
32
+
33
+ &:hover {
34
+ .socials {
35
+ @include translate(-50%, 0);
36
+ }
37
+ }
38
+ }
39
+ }
40
+
41
+ .gutter-0 {
42
+ .user {
43
+ border-radius: 0;
44
+ }
45
+ }
46
+
47
+ .user-photo {
48
+ display: block;
49
+ overflow: hidden;
50
+ margin: 0;
51
+
52
+ img {
53
+ max-width: 100%;
54
+ }
55
+ }
56
+
57
+ .user-caption {
58
+ @extend %text-shadow;
59
+ @include transition;
60
+ position: absolute;
61
+ bottom: 0;
62
+ right: 0;
63
+ left: 0;
64
+ padding: 1.875rem;
65
+ background: linear-gradient(to bottom, rgba($black,0) 0%,rgba($black,0.5) 100%);
66
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
67
+
68
+ > * {
69
+ display: block;
70
+ }
71
+
72
+ h4 {
73
+ color: $text-white-primary;
74
+ margin: 0;
75
+ }
76
+
77
+ span {
78
+ color: $text-white-secondary;
79
+ }
80
+
81
+ .socials {
82
+ @extend %socials-text-whiteed;
83
+ @extend %bordered-text-whiteed;
84
+ @include translate(0, calc(100% + 2.5rem));
85
+ position: absolute;
86
+ bottom: 1.875rem;
87
+ }
88
+ }
89
+
90
+
91
+ .expanded {
92
+ + .user-panel {
93
+ @include translate(0,0);
94
+ visibility: visible;
95
+ opacity: 1;
96
+ padding: 15rem 0 5rem 0;
97
+
98
+ > .container {
99
+ opacity: 1;
100
+ transition-delay: 0.2s;
101
+ }
102
+ }
103
+ }
104
+
105
+ .user-panel {
106
+ @extend %text-white;
107
+ @extend %text-shadow;
108
+ @include translate(0,100%);
109
+ @include transition(0.2s);
110
+ position: fixed;
111
+ bottom: 0;
112
+ left: 0;
113
+ right: 0;
114
+ display: block;
115
+ padding: 0;
116
+ opacity: 0;
117
+ z-index: 100;
118
+ visibility: hidden;
119
+ opacity: 0;
120
+
121
+
122
+ &::before {
123
+ content: "";
124
+ position: absolute;
125
+ top: 0;
126
+ right: 0;
127
+ bottom: 0;
128
+ left: 0;
129
+ // background: -moz-linear-gradient(top, rgba($black,0.0) 0%, rgba($black,1) 100%);
130
+ // background: -webkit-linear-gradient(top, rgba($black,0.0) 0%, rgba($black,1) 100%);
131
+ background: linear-gradient(to bottom, rgba(52, 231, 154, 0) 0%, rgba(193, 193, 193, 0.6) 20%, rgba(171, 171, 171, 0.8) 40%, black 100%);
132
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
133
+ }
134
+
135
+ > .container {
136
+ @include transition();
137
+ opacity: 0;
138
+ }
139
+
140
+ .collapse {
141
+ @include transition;
142
+ @include translate(-50%,0);
143
+ position: absolute;
144
+ bottom: ($grid-gutter-width / 2);
145
+ left: 50%;
146
+ display: block;
147
+ border-radius: 50%;
148
+ text-align: center;
149
+ width: 4.25rem;
150
+ height: 4.25rem;
151
+ line-height: 4.25rem;
152
+ text-align: center;
153
+ cursor: pointer;
154
+ color: $black;
155
+
156
+ &::before {
157
+ font-family: 'icomoon';
158
+ font-size: 1.875rem;
159
+ content: "\ecce";
160
+ color: $white;
161
+ }
162
+
163
+ &:hover {
164
+ background: rgba($white, .1);
165
+ }
166
+ }
167
+
168
+ }
169
+
170
+ //
171
+ // Avatar
172
+ //
173
+ .avatar {
174
+ @include border-radius;
175
+ width: 3.75rem;
176
+ height: 3.75rem;
177
+
178
+ &[class*="-sm"] {
179
+ width: 2.5rem;
180
+ height: auto;
181
+ }
182
+
183
+ &[class*="-lg"] {
184
+ width: 5rem;
185
+ height: auto;
186
+ }
187
+
188
+ &[class*="-xl"] {
189
+ width: 10rem;
190
+ height: auto;
191
+ }
192
+ }
193
+
194
+
195
+
196
+ //
197
+ // User Grid
198
+ //
199
+ .user-grid {
200
+ @include selection(none);
201
+ @include clearfix;
202
+ list-style: none;
203
+ padding: 0;
204
+
205
+ > li {
206
+ float: left;
207
+ }
208
+
209
+ .user {
210
+ overflow: visible;
211
+ }
212
+
213
+ .user-photo {
214
+ @include transition;
215
+ border-radius: 50%;
216
+ cursor: pointer;
217
+
218
+ &:hover {
219
+ @include scale(1.1);
220
+ -webkit-box-shadow: 0px 10px 15px 0 rgba($black,0.1);
221
+ -moz-box-shadow: 0px 10px 15px 0 rgba($black,0.1);
222
+ box-shadow: 0px 10px 15px 0 rgba($black,0.1);
223
+ }
224
+
225
+ &.expanded {
226
+ @include scale(1.1);
227
+ -webkit-box-shadow: 0px 10px 15px 0 rgba($black,0.1);
228
+ -moz-box-shadow: 0px 10px 15px 0 rgba($black,0.1);
229
+ box-shadow: 0px 10px 15px 0 rgba($black,0.1);
230
+ }
231
+
232
+ img {
233
+ @include transition;
234
+ border-radius: 50%;
235
+ }
236
+ }
237
+ }
238
+
239
+ @include media-breakpoint-down(md) {
240
+ .user-grid {
241
+ > li {
242
+ width: 20%;
243
+
244
+ &:nth-child(6) {
245
+ margin-left: calc(20% / 2);
246
+ }
247
+ }
248
+ }
249
+ }
250
+
251
+ @include media-breakpoint-up(lg) {
252
+ .user-grid {
253
+ > li {
254
+ width: 12.5%;
255
+
256
+ &:nth-child(9) {
257
+ margin-left: calc(12.5% / 2);
258
+ }
259
+ }
260
+ }
261
+ }
262
+
263
+
264
+
265
+ //
266
+ // User List
267
+ //
268
+ .user-list {
269
+ display: inline-block;
270
+ margin: 0;
271
+ padding: 0;
272
+
273
+ > li {
274
+ position: relative;
275
+ display: inline-block;
276
+ width: 3.125rem;
277
+ border-radius: 50%;
278
+ z-index: 10;
279
+ overflow: hidden;
280
+ @include transition;
281
+
282
+ &:not(:first-child) {
283
+ @include shadow();
284
+ border-radius: 50%;
285
+ margin-left: -1rem;
286
+ }
287
+
288
+ &:hover {
289
+ @include shadow;
290
+ z-index: 20;
291
+ }
292
+ }
293
+ }
294
+
295
+
296
+ //
297
+ // Speakers
298
+ //
299
+ .speakers {
300
+ margin-right: 1.25rem;
301
+ }
302
+
303
+ @include media-breakpoint-down(md) {
304
+ .speakers {
305
+ display: none;
306
+ }
307
+ }