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.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/vbax/sass/template_go.scss +2 -0
- data/lib/vbax/sass/template_go/components/_accordion.scss +436 -0
- data/lib/vbax/sass/template_go/components/_badges.scss +35 -0
- data/lib/vbax/sass/template_go/components/_blog.scss +321 -0
- data/lib/vbax/sass/template_go/components/_boxes.scss +169 -0
- data/lib/vbax/sass/template_go/components/_breadcrumbs.scss +88 -0
- data/lib/vbax/sass/template_go/components/_buttons.scss +145 -0
- data/lib/vbax/sass/template_go/components/_cards.scss +129 -0
- data/lib/vbax/sass/template_go/components/_carousel.scss +260 -0
- data/lib/vbax/sass/template_go/components/_components.scss +31 -0
- data/lib/vbax/sass/template_go/components/_docs.scss +107 -0
- data/lib/vbax/sass/template_go/components/_dropdowns.scss +115 -0
- data/lib/vbax/sass/template_go/components/_features.scss +50 -0
- data/lib/vbax/sass/template_go/components/_gallery.scss +104 -0
- data/lib/vbax/sass/template_go/components/_hero.scss +266 -0
- data/lib/vbax/sass/template_go/components/_icons.scss +53 -0
- data/lib/vbax/sass/template_go/components/_jobs.scss +24 -0
- data/lib/vbax/sass/template_go/components/_list.scss +111 -0
- data/lib/vbax/sass/template_go/components/_maps.scss +43 -0
- data/lib/vbax/sass/template_go/components/_masonry.scss +28 -0
- data/lib/vbax/sass/template_go/components/_modals.scss +48 -0
- data/lib/vbax/sass/template_go/components/_nav.scss +288 -0
- data/lib/vbax/sass/template_go/components/_navbar.scss +119 -0
- data/lib/vbax/sass/template_go/components/_partners.scss +27 -0
- data/lib/vbax/sass/template_go/components/_presentations.scss +173 -0
- data/lib/vbax/sass/template_go/components/_pricing.scss +111 -0
- data/lib/vbax/sass/template_go/components/_progress.scss +70 -0
- data/lib/vbax/sass/template_go/components/_swiper.scss +239 -0
- data/lib/vbax/sass/template_go/components/_syntax.scss +173 -0
- data/lib/vbax/sass/template_go/components/_tables.scss +140 -0
- data/lib/vbax/sass/template_go/components/_testimonials.scss +191 -0
- data/lib/vbax/sass/template_go/components/_users.scss +307 -0
- data/lib/vbax/sass/template_go/components/_video.scss +113 -0
- data/lib/vbax/sass/template_go/layout/_colors.scss +54 -0
- data/lib/vbax/sass/template_go/layout/_components.scss +253 -0
- data/lib/vbax/sass/template_go/layout/_content.scss +376 -0
- data/lib/vbax/sass/template_go/layout/_custom-forms.scss +367 -0
- data/lib/vbax/sass/template_go/layout/_footer.scss +39 -0
- data/lib/vbax/sass/template_go/layout/_forms.scss +103 -0
- data/lib/vbax/sass/template_go/layout/_header.scss +105 -0
- data/lib/vbax/sass/template_go/layout/_helpers.scss +9 -0
- data/lib/vbax/sass/template_go/layout/_icons.scss +5319 -0
- data/lib/vbax/sass/template_go/layout/_invert.scss +195 -0
- data/lib/vbax/sass/template_go/layout/_layout.scss +16 -0
- data/lib/vbax/sass/template_go/layout/_mixins.scss +110 -0
- data/lib/vbax/sass/template_go/layout/_overlay.scss +165 -0
- data/lib/vbax/sass/template_go/layout/_project.scss +172 -0
- data/lib/vbax/sass/template_go/layout/_sidebar.scss +12 -0
- data/lib/vbax/sass/template_go/layout/_sizing.scss +114 -0
- data/lib/vbax/sass/template_go/layout/_typography.scss +197 -0
- data/lib/vbax/template_go.rb +9 -0
- data/lib/vbax/template_go/engine.rb +14 -0
- data/lib/vbax/template_go/version.rb +5 -0
- data/vbax-template_go.gemspec +29 -0
- metadata +133 -0
@@ -0,0 +1,53 @@
|
|
1
|
+
// Icons
|
2
|
+
//
|
3
|
+
//
|
4
|
+
//
|
5
|
+
//
|
6
|
+
|
7
|
+
|
8
|
+
//
|
9
|
+
// Icomoon
|
10
|
+
//
|
11
|
+
[class^="icon-"], [class*=" icon-"] {
|
12
|
+
display: inline-block;
|
13
|
+
width: 1em;
|
14
|
+
line-height: 1em;
|
15
|
+
box-sizing: content-box;
|
16
|
+
text-align: center;
|
17
|
+
border: 1px solid transparent;
|
18
|
+
|
19
|
+
&[class*="-bordered"] {
|
20
|
+
border-color: currentColor;
|
21
|
+
border-radius: 50%;
|
22
|
+
border-width: 2px;
|
23
|
+
padding: .5em;
|
24
|
+
|
25
|
+
}
|
26
|
+
|
27
|
+
&[class*="-filled"] {
|
28
|
+
border-radius: 50%;
|
29
|
+
border-color: transparent;
|
30
|
+
padding: .5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
//
|
37
|
+
// SVG
|
38
|
+
//
|
39
|
+
.svg-icon {
|
40
|
+
display: inline-block;
|
41
|
+
|
42
|
+
svg {
|
43
|
+
display: block;
|
44
|
+
height: 1em;
|
45
|
+
width: 1em;
|
46
|
+
stroke: currentColor;
|
47
|
+
fill: currentColor; // maybe remove ?
|
48
|
+
|
49
|
+
* {
|
50
|
+
stroke: currentColor;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
//
|
2
|
+
// Job
|
3
|
+
//
|
4
|
+
//
|
5
|
+
|
6
|
+
.job {
|
7
|
+
@include transition;
|
8
|
+
@include border-radius;
|
9
|
+
padding: $grid-gutter-width ($grid-gutter-width / 2);
|
10
|
+
margin: 0;
|
11
|
+
background: rgba($black, .1);
|
12
|
+
|
13
|
+
&:hover {
|
14
|
+
background: rgba($black, .2);
|
15
|
+
}
|
16
|
+
|
17
|
+
&:not(:last-child) {
|
18
|
+
margin-bottom: 10px!important;
|
19
|
+
}
|
20
|
+
|
21
|
+
> * {
|
22
|
+
margin: 0;
|
23
|
+
}
|
24
|
+
}
|
@@ -0,0 +1,111 @@
|
|
1
|
+
//
|
2
|
+
// List
|
3
|
+
//
|
4
|
+
|
5
|
+
|
6
|
+
// .list-group {
|
7
|
+
// font-size: 0.9375rem;
|
8
|
+
// }
|
9
|
+
|
10
|
+
|
11
|
+
.list-group-item {
|
12
|
+
position: relative;
|
13
|
+
|
14
|
+
span {
|
15
|
+
margin-bottom: 0;
|
16
|
+
}
|
17
|
+
|
18
|
+
[class*="icon"] {
|
19
|
+
&:first-child {
|
20
|
+
padding-right: 1rem;
|
21
|
+
}
|
22
|
+
|
23
|
+
&:last-child {
|
24
|
+
padding-left: 1rem;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
a {
|
29
|
+
@include transition();
|
30
|
+
display: inline-block;
|
31
|
+
color: inherit;
|
32
|
+
|
33
|
+
&:hover {
|
34
|
+
color: $primary;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
|
40
|
+
// .list-group-item-action {
|
41
|
+
// @include transition;
|
42
|
+
|
43
|
+
// @include hover-focus {
|
44
|
+
// background-color: transparent;
|
45
|
+
// }
|
46
|
+
// }
|
47
|
+
|
48
|
+
|
49
|
+
.list-group-line {
|
50
|
+
.list-group-item {
|
51
|
+
padding-left: 0;
|
52
|
+
padding-right: 0;
|
53
|
+
border: 0;
|
54
|
+
|
55
|
+
&:not(:first-child) {
|
56
|
+
&::before {
|
57
|
+
position: absolute;
|
58
|
+
top: 0;
|
59
|
+
content: "";
|
60
|
+
display: block;
|
61
|
+
width: 25%;
|
62
|
+
height: $border-width;
|
63
|
+
background: $border-color;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
// minimal
|
71
|
+
.list-group-minimal {
|
72
|
+
.list-group-item {
|
73
|
+
padding: 0 0 .5em 0;
|
74
|
+
border: 0;
|
75
|
+
|
76
|
+
&:last-child {
|
77
|
+
padding: 0;
|
78
|
+
}
|
79
|
+
|
80
|
+
&.active {
|
81
|
+
background: transparent;
|
82
|
+
color: $black;
|
83
|
+
}
|
84
|
+
|
85
|
+
[class*="icon"] {
|
86
|
+
padding-right: 0;
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
91
|
+
|
92
|
+
.text-white {
|
93
|
+
.list-group-item {
|
94
|
+
|
95
|
+
&:not(:first-child) {
|
96
|
+
border-color: $text-white-border;
|
97
|
+
}
|
98
|
+
|
99
|
+
a {
|
100
|
+
color: $text-white-secondary;
|
101
|
+
|
102
|
+
&:hover {
|
103
|
+
color: $text-white-primary;
|
104
|
+
}
|
105
|
+
}
|
106
|
+
|
107
|
+
span {
|
108
|
+
color: $text-white-primary;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
// Maps
|
2
|
+
//
|
3
|
+
//
|
4
|
+
//
|
5
|
+
|
6
|
+
.map {
|
7
|
+
> [class*="container"] {
|
8
|
+
position: static;
|
9
|
+
visibility: hidden;
|
10
|
+
|
11
|
+
[class*="col"] {
|
12
|
+
visibility: visible;
|
13
|
+
position: relative;
|
14
|
+
z-index: 20;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
.map-area {
|
20
|
+
position: absolute;
|
21
|
+
top: 0;
|
22
|
+
right: 0;
|
23
|
+
bottom: 0;
|
24
|
+
left: 0;
|
25
|
+
z-index: 10;
|
26
|
+
}
|
27
|
+
|
28
|
+
.map-circle {
|
29
|
+
position: relative;
|
30
|
+
border-radius: 50%;
|
31
|
+
overflow: hidden;
|
32
|
+
}
|
33
|
+
|
34
|
+
|
35
|
+
// Responsive
|
36
|
+
//
|
37
|
+
//
|
38
|
+
// responsive styles for maps
|
39
|
+
@include media-breakpoint-down(md) {
|
40
|
+
.map {
|
41
|
+
padding-bottom: 50vh;
|
42
|
+
}
|
43
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
// Masonry
|
2
|
+
//
|
3
|
+
//
|
4
|
+
//
|
5
|
+
|
6
|
+
|
7
|
+
.masonry {
|
8
|
+
padding: 0;
|
9
|
+
list-style: none;
|
10
|
+
|
11
|
+
> li {
|
12
|
+
position: relative;
|
13
|
+
// width: 100%;
|
14
|
+
|
15
|
+
// > * { margin: 0; }
|
16
|
+
|
17
|
+
// @include media-breakpoint-up(md) { width: 50%; }
|
18
|
+
}
|
19
|
+
|
20
|
+
|
21
|
+
// &[data-columns="3"] > li {
|
22
|
+
// @include media-breakpoint-up(lg) { width: (100% / 3); }
|
23
|
+
// }
|
24
|
+
|
25
|
+
// &[data-columns="4"] > li {
|
26
|
+
// @include media-breakpoint-up(lg) { width: (100% / 4); }
|
27
|
+
// }
|
28
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
//
|
2
|
+
// Modals
|
3
|
+
//
|
4
|
+
//
|
5
|
+
.modal-content {
|
6
|
+
position: relative;
|
7
|
+
|
8
|
+
> *:not(.image) {
|
9
|
+
z-index: 5;
|
10
|
+
}
|
11
|
+
|
12
|
+
.image {
|
13
|
+
@include border-radius;
|
14
|
+
}
|
15
|
+
|
16
|
+
.close {
|
17
|
+
@include transition;
|
18
|
+
display: inline-block;
|
19
|
+
margin: 0;
|
20
|
+
padding: .5em;
|
21
|
+
opacity: 1;
|
22
|
+
background: $white;
|
23
|
+
border-radius: 50%;
|
24
|
+
|
25
|
+
span {
|
26
|
+
color: $black;
|
27
|
+
}
|
28
|
+
|
29
|
+
&:hover {
|
30
|
+
@include scale;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
.modal-header {
|
36
|
+
@include clearfix;
|
37
|
+
}
|
38
|
+
|
39
|
+
.modal-image {
|
40
|
+
@include border-top-radius($border-radius);
|
41
|
+
position: relative;
|
42
|
+
|
43
|
+
.close {
|
44
|
+
position: absolute;
|
45
|
+
top: $modal-header-padding;
|
46
|
+
right: $modal-header-padding;
|
47
|
+
}
|
48
|
+
}
|
@@ -0,0 +1,288 @@
|
|
1
|
+
// Navs
|
2
|
+
//
|
3
|
+
//
|
4
|
+
//
|
5
|
+
|
6
|
+
.nav {
|
7
|
+
display: inline-block;
|
8
|
+
position: relative;
|
9
|
+
|
10
|
+
.nav-link {
|
11
|
+
@include transition;
|
12
|
+
position: relative;
|
13
|
+
display: inline-block;
|
14
|
+
color: $gray-300;
|
15
|
+
z-index: 5;
|
16
|
+
font-size: 14px;
|
17
|
+
font-weight: 400;
|
18
|
+
text-transform: uppercase;
|
19
|
+
letter-spacing: $letter-spacing;
|
20
|
+
cursor: pointer;
|
21
|
+
}
|
22
|
+
|
23
|
+
.lavalamp-object {
|
24
|
+
display: none;
|
25
|
+
z-index: 1;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
|
30
|
+
//
|
31
|
+
// text
|
32
|
+
//
|
33
|
+
.nav-text {
|
34
|
+
margin: -.5rem;
|
35
|
+
|
36
|
+
.nav-link {
|
37
|
+
margin: .5rem;
|
38
|
+
padding: 0 0 1rem 0;
|
39
|
+
line-height: 1em;
|
40
|
+
font-weight: $font-weight-light;
|
41
|
+
font-size: 1.875rem;
|
42
|
+
z-index: 5;
|
43
|
+
|
44
|
+
&.active {
|
45
|
+
color: $primary;
|
46
|
+
border-color: $primary;
|
47
|
+
}
|
48
|
+
|
49
|
+
&:hover {
|
50
|
+
color: $primary;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
// tabs
|
58
|
+
.nav-tabs {
|
59
|
+
border: 0;
|
60
|
+
|
61
|
+
.lavalamp-object {
|
62
|
+
display: block;
|
63
|
+
position: absolute;
|
64
|
+
border-width: 0 0 2px 0;
|
65
|
+
border-style: solid;
|
66
|
+
border-color: $primary;
|
67
|
+
}
|
68
|
+
|
69
|
+
.nav-item {
|
70
|
+
margin-right: $grid-gutter-width;
|
71
|
+
}
|
72
|
+
|
73
|
+
.nav-link {
|
74
|
+
border: 0;
|
75
|
+
padding-left: 0;
|
76
|
+
padding-right: 0;
|
77
|
+
|
78
|
+
&.active {
|
79
|
+
background-color: transparent;
|
80
|
+
}
|
81
|
+
|
82
|
+
}
|
83
|
+
|
84
|
+
&.nav-vertical {
|
85
|
+
border-width: 0 0 0 $border-width;
|
86
|
+
|
87
|
+
.lavalamp-object {
|
88
|
+
border-width: 0 0 0 2px;
|
89
|
+
border-bottom: 0;
|
90
|
+
}
|
91
|
+
|
92
|
+
.nav-link {
|
93
|
+
padding: .5rem 1rem;
|
94
|
+
margin: 0;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
// pills
|
102
|
+
.nav-pills {
|
103
|
+
.lavalamp-object {
|
104
|
+
display: block;
|
105
|
+
position: absolute;
|
106
|
+
border: 2px solid $primary;
|
107
|
+
border-radius: 10rem;
|
108
|
+
}
|
109
|
+
|
110
|
+
.nav-link {
|
111
|
+
z-index: 5;
|
112
|
+
padding: .75rem 1.5rem;
|
113
|
+
|
114
|
+
&.active,
|
115
|
+
&:hover {
|
116
|
+
color: $gray-700;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
//
|
124
|
+
// Switch
|
125
|
+
//
|
126
|
+
.nav-switch {
|
127
|
+
display: inline-block;
|
128
|
+
border: $border-width solid $border-color;
|
129
|
+
border-radius: 22.5px;
|
130
|
+
overflow: hidden;
|
131
|
+
|
132
|
+
.lavalamp-object {
|
133
|
+
display: block;
|
134
|
+
position: absolute;
|
135
|
+
background: $border-color;
|
136
|
+
border-radius: 10rem;
|
137
|
+
}
|
138
|
+
|
139
|
+
.nav-link {
|
140
|
+
padding: 15px 25px;
|
141
|
+
line-height: 15px;
|
142
|
+
font-size: $font-size-sm;
|
143
|
+
text-transform: uppercase;
|
144
|
+
letter-spacing: $letter-spacing;
|
145
|
+
z-index: 5;
|
146
|
+
cursor: pointer;
|
147
|
+
|
148
|
+
&.active,
|
149
|
+
&:hover {
|
150
|
+
color: $gray-700;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
|
156
|
+
//
|
157
|
+
// Docs
|
158
|
+
//
|
159
|
+
.nav-docs {
|
160
|
+
display: inline-block;
|
161
|
+
|
162
|
+
.lavalamp-object {
|
163
|
+
@extend %boxed;
|
164
|
+
@include border-radius;
|
165
|
+
display: block;
|
166
|
+
position: absolute;
|
167
|
+
}
|
168
|
+
|
169
|
+
.nav-link {
|
170
|
+
padding: 10px 20px;
|
171
|
+
line-height: 20px;
|
172
|
+
font-size: $font-size-sm;
|
173
|
+
letter-spacing: $letter-spacing-lg;
|
174
|
+
text-transform: uppercase;
|
175
|
+
z-index: 5;
|
176
|
+
cursor: pointer;
|
177
|
+
|
178
|
+
&.active,
|
179
|
+
&:hover {
|
180
|
+
color: $black;
|
181
|
+
}
|
182
|
+
|
183
|
+
|
184
|
+
}
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
// Vertical
|
189
|
+
//
|
190
|
+
// vertical direction for .nav-pills and .nav-line
|
191
|
+
.nav-vertical {
|
192
|
+
display: inline-block;
|
193
|
+
|
194
|
+
.nav-link {
|
195
|
+
display: block;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
.tab-content {
|
201
|
+
position: relative;
|
202
|
+
|
203
|
+
.tab-pane {
|
204
|
+
@include transition;
|
205
|
+
width: 100%;
|
206
|
+
display: block;
|
207
|
+
|
208
|
+
&:not(.active) {
|
209
|
+
visibility: hidden;
|
210
|
+
position: absolute;
|
211
|
+
top: 0;
|
212
|
+
animation: fadeOutBottom .25s ease forwards;
|
213
|
+
-webkit-animation: fadeOutBottom .25s ease forwards;
|
214
|
+
}
|
215
|
+
|
216
|
+
&.active {
|
217
|
+
top: 0;
|
218
|
+
position: relative;
|
219
|
+
z-index: 90;
|
220
|
+
animation: fadeInTop .5s ease forwards;
|
221
|
+
-webkit-animation: fadeInTop .5s ease forwards;
|
222
|
+
}
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
|
227
|
+
@keyframes fadeOutBottom {
|
228
|
+
from {
|
229
|
+
opacity: 1;
|
230
|
+
@include translate(0,0);
|
231
|
+
@include scale(1);
|
232
|
+
}
|
233
|
+
to {
|
234
|
+
opacity: 0;
|
235
|
+
@include translate(0,10%);
|
236
|
+
@include scale(.8);
|
237
|
+
-webkit-font-smoothing: antialiased;
|
238
|
+
}
|
239
|
+
}
|
240
|
+
@-webkit-keyframes fadeOutBottom {
|
241
|
+
from {
|
242
|
+
opacity: 1;
|
243
|
+
@include translate(0,0);
|
244
|
+
-webkit-transform: translate3d(0, 0, 0);
|
245
|
+
}
|
246
|
+
to {
|
247
|
+
opacity: 0;
|
248
|
+
@include translate(0,10%);
|
249
|
+
-webkit-font-smoothing: antialiased;
|
250
|
+
}
|
251
|
+
}
|
252
|
+
@keyframes fadeInTop {
|
253
|
+
from {
|
254
|
+
opacity: 0;
|
255
|
+
@include translate(0,10%);
|
256
|
+
}
|
257
|
+
to {
|
258
|
+
opacity: 1;
|
259
|
+
@include translate(0,0);
|
260
|
+
-webkit-font-smoothing: antialiased;
|
261
|
+
}
|
262
|
+
}
|
263
|
+
@-webkit-keyframes fadeInTop {
|
264
|
+
from {
|
265
|
+
opacity: 0;
|
266
|
+
@include translate(0,10%);
|
267
|
+
}
|
268
|
+
to {
|
269
|
+
opacity: 1;
|
270
|
+
@include translate(0,0);
|
271
|
+
-webkit-font-smoothing: antialiased;
|
272
|
+
}
|
273
|
+
}
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
// text-whiteed
|
278
|
+
//
|
279
|
+
// styles for colored/image background
|
280
|
+
.text-white {
|
281
|
+
.nav-switch {
|
282
|
+
border-color: $text-white-border;
|
283
|
+
|
284
|
+
.lavalamp-object {
|
285
|
+
background: $text-white-border;
|
286
|
+
}
|
287
|
+
}
|
288
|
+
}
|