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,119 @@
|
|
1
|
+
//
|
2
|
+
// navbar
|
3
|
+
//
|
4
|
+
//
|
5
|
+
|
6
|
+
.navbar {
|
7
|
+
padding-left: 0;
|
8
|
+
padding-right: 0;
|
9
|
+
}
|
10
|
+
|
11
|
+
.navbar-brand {
|
12
|
+
height: 35px;
|
13
|
+
margin-top: .5rem;
|
14
|
+
margin-bottom: .5rem;
|
15
|
+
margin-right: 3rem;
|
16
|
+
@include media-breakpoint-down(xs) { margin-right: 0rem; }
|
17
|
+
|
18
|
+
&.navbar-brand-sm { height: 36px; }
|
19
|
+
&.navbar-brand-lg { height: 56px; }
|
20
|
+
|
21
|
+
.navbar-logo {
|
22
|
+
width: auto;
|
23
|
+
max-height: 100%;
|
24
|
+
display: none;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
.navbar-nav {
|
29
|
+
.nav-item {
|
30
|
+
+ .nav-item {
|
31
|
+
margin-left: 1rem;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
.nav-link {
|
36
|
+
@include transition;
|
37
|
+
font-size: $font-size-sm;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
|
42
|
+
.navbar-toggler {
|
43
|
+
padding: 0!important;
|
44
|
+
border: 0;
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
// Responsive
|
49
|
+
//
|
50
|
+
// Mobile View for Navbar
|
51
|
+
@include media-breakpoint-down(md) {
|
52
|
+
|
53
|
+
.navbar-logo-dark {
|
54
|
+
display: block!important;
|
55
|
+
}
|
56
|
+
|
57
|
+
.navbar {
|
58
|
+
.navbar-toggler {
|
59
|
+
padding: .5rem;
|
60
|
+
color: $navbar-light-color;
|
61
|
+
border-color: $navbar-light-toggler-border-color;
|
62
|
+
border-radius: 50%;
|
63
|
+
}
|
64
|
+
|
65
|
+
.nav-item {
|
66
|
+
+ .nav-item {
|
67
|
+
margin: 0;
|
68
|
+
}
|
69
|
+
|
70
|
+
.nav-link {
|
71
|
+
padding: 5px 0;
|
72
|
+
color: $body-color;
|
73
|
+
|
74
|
+
&:focus,
|
75
|
+
&:hover {
|
76
|
+
color: $black;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
&.show,
|
81
|
+
&.active {
|
82
|
+
.nav-link {
|
83
|
+
color: $black;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
|
90
|
+
.navbar {
|
91
|
+
.banner {
|
92
|
+
display: none;
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
.navbar-nav {
|
97
|
+
|
98
|
+
|
99
|
+
.nav-item {
|
100
|
+
width: 100%;
|
101
|
+
padding: .5rem 0;
|
102
|
+
|
103
|
+
.btn {
|
104
|
+
display: block;
|
105
|
+
background-color: $primary;
|
106
|
+
color: $white;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
|
113
|
+
.overlay-active {
|
114
|
+
.headroom {
|
115
|
+
max-height: 100vh;
|
116
|
+
overflow: hidden;
|
117
|
+
overflow-y: scroll;
|
118
|
+
}
|
119
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
//
|
2
|
+
// Partners
|
3
|
+
//
|
4
|
+
.partners {
|
5
|
+
|
6
|
+
.owl-stage-outer {
|
7
|
+
|
8
|
+
.owl-stage {
|
9
|
+
display: -ms-flexbox!important;
|
10
|
+
display: flex !important;
|
11
|
+
|
12
|
+
.owl-item {
|
13
|
+
text-align: center;
|
14
|
+
-ms-flex-item-align: center !important;
|
15
|
+
align-self: center !important;
|
16
|
+
|
17
|
+
img {
|
18
|
+
display: inline-block;
|
19
|
+
width: initial;
|
20
|
+
max-width: 60%;
|
21
|
+
}
|
22
|
+
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,173 @@
|
|
1
|
+
//
|
2
|
+
// Images
|
3
|
+
//
|
4
|
+
//
|
5
|
+
|
6
|
+
.presentation-circle {
|
7
|
+
@extend %equal;
|
8
|
+
overflow: visible;
|
9
|
+
|
10
|
+
> figure {
|
11
|
+
@extend %boxed;
|
12
|
+
background-size: cover;
|
13
|
+
background-position: center;
|
14
|
+
border-radius: 50%;
|
15
|
+
z-index: 10;
|
16
|
+
|
17
|
+
&::before {
|
18
|
+
@include translate(-50%, -50%);
|
19
|
+
@include prefix(animation, pulse 3s infinite, webkit moz o);
|
20
|
+
content: "";
|
21
|
+
position: absolute;
|
22
|
+
top: 50%;
|
23
|
+
left: 50%;
|
24
|
+
width: 100%;
|
25
|
+
height: 100%;
|
26
|
+
border-radius: 50%;
|
27
|
+
border: $border-width solid rgba($black, .1);
|
28
|
+
z-index: -1;
|
29
|
+
animation-timing-function: cubic-bezier(0.1, 0.2, 0.3,1);
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
&.with-delay {
|
34
|
+
> figure {
|
35
|
+
&::before {
|
36
|
+
animation-delay: 1s;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
@-webkit-keyframes pulse {
|
43
|
+
0% {
|
44
|
+
width: 100%;
|
45
|
+
height: 100%;
|
46
|
+
opacity: 0;
|
47
|
+
}
|
48
|
+
50% {
|
49
|
+
opacity: 1;
|
50
|
+
}
|
51
|
+
100% {
|
52
|
+
width: 125%;
|
53
|
+
height: 125%;
|
54
|
+
opacity: 0;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
@-moz-keyframes pulse {
|
58
|
+
0% {
|
59
|
+
width: 100%;
|
60
|
+
height: 100%;
|
61
|
+
opacity: 0;
|
62
|
+
}
|
63
|
+
50% {
|
64
|
+
opacity: 1;
|
65
|
+
}
|
66
|
+
100% {
|
67
|
+
width: 125%;
|
68
|
+
height: 125%;
|
69
|
+
opacity: 0;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
@-o-keyframes pulse {
|
73
|
+
0% {
|
74
|
+
width: 100%;
|
75
|
+
height: 100%;
|
76
|
+
opacity: 0;
|
77
|
+
}
|
78
|
+
50% {
|
79
|
+
opacity: 1;
|
80
|
+
}
|
81
|
+
100% {
|
82
|
+
width: 125%;
|
83
|
+
height: 125%;
|
84
|
+
opacity: 0;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
@keyframes pulse {
|
88
|
+
0% {
|
89
|
+
width: 100%;
|
90
|
+
height: 100%;
|
91
|
+
opacity: 0;
|
92
|
+
}
|
93
|
+
50% {
|
94
|
+
opacity: 1;
|
95
|
+
}
|
96
|
+
100% {
|
97
|
+
width: 125%;
|
98
|
+
height: 125%;
|
99
|
+
opacity: 0;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
//
|
106
|
+
// Presentation
|
107
|
+
//
|
108
|
+
.presentation-container {
|
109
|
+
> * {
|
110
|
+
position: relative;
|
111
|
+
z-index: 5;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
.presentation {
|
116
|
+
position: relative;
|
117
|
+
z-index: 0;
|
118
|
+
|
119
|
+
img {
|
120
|
+
position: absolute;
|
121
|
+
// max-width: 100%;
|
122
|
+
// max-height: calc(100% + 12.5rem);
|
123
|
+
max-width: initial;
|
124
|
+
max-height: initial;
|
125
|
+
}
|
126
|
+
|
127
|
+
.top-0 { top: 0; }
|
128
|
+
.top-25 { top: 25%; }
|
129
|
+
.top-50 { top: 50%; }
|
130
|
+
.top-75 { top: 75%; }
|
131
|
+
|
132
|
+
.bottom-0 { bottom: 0; }
|
133
|
+
.bottom-25 { bottom: 25%; }
|
134
|
+
.bottom-50 { bottom: 50%; }
|
135
|
+
.bottom-75 { bottom: 75%; }
|
136
|
+
|
137
|
+
.left-0 { left: 0; }
|
138
|
+
.left-25 { left: 25%; }
|
139
|
+
.left-50 { left: 50%; }
|
140
|
+
.left-75 { left: 75%; }
|
141
|
+
|
142
|
+
.right-0 { right: 0; }
|
143
|
+
.right-25 { right: 25%; }
|
144
|
+
.right-50 { right: 50%; }
|
145
|
+
.right-75 { right: 75%; }
|
146
|
+
|
147
|
+
.vertical-align {
|
148
|
+
top: 50%;
|
149
|
+
@include translate(0,-50%);
|
150
|
+
}
|
151
|
+
|
152
|
+
.horizontal-align {
|
153
|
+
left: 50%;
|
154
|
+
@include translate(-50%,0);
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
@include media-breakpoint-down(md) {
|
159
|
+
.presentation-responsive {
|
160
|
+
height: 40vh!important;
|
161
|
+
|
162
|
+
img {
|
163
|
+
top: 0!important;
|
164
|
+
left: 0!important;
|
165
|
+
@include translate(0,0);
|
166
|
+
}
|
167
|
+
|
168
|
+
img.vertical-align,
|
169
|
+
img.horizontal-align {
|
170
|
+
@include translate(0,0);
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
@@ -0,0 +1,111 @@
|
|
1
|
+
//
|
2
|
+
// Pricing
|
3
|
+
//
|
4
|
+
|
5
|
+
|
6
|
+
.card-price {
|
7
|
+
.svg-icon {
|
8
|
+
margin-bottom: ($card-spacer-x * 1.5);
|
9
|
+
}
|
10
|
+
|
11
|
+
// .card-title {
|
12
|
+
// margin-bottom: ($card-spacer-y / 2);
|
13
|
+
// font-size: 1.25rem;
|
14
|
+
// font-weight: 400;
|
15
|
+
// }
|
16
|
+
|
17
|
+
.card-footer {
|
18
|
+
@include transition;
|
19
|
+
position: relative;
|
20
|
+
padding: $card-spacer-x!important;
|
21
|
+
border-top: $border-width solid $border-color;
|
22
|
+
color: $body-color;
|
23
|
+
|
24
|
+
&::after {
|
25
|
+
@include transition;
|
26
|
+
@include translate(0,-50%);
|
27
|
+
position: absolute;
|
28
|
+
top: 50%;
|
29
|
+
right: 2.875rem;
|
30
|
+
display: block;
|
31
|
+
content: "\ebde";
|
32
|
+
font-size: 1.375rem;
|
33
|
+
font-family: $font-icon;
|
34
|
+
}
|
35
|
+
|
36
|
+
&:hover {
|
37
|
+
background: $gray-200;
|
38
|
+
|
39
|
+
&::after {
|
40
|
+
right: 1.875rem;
|
41
|
+
color: inherit;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
.card-price {
|
47
|
+
font-size: 2.5rem;
|
48
|
+
font-weight: 400;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
// card 2
|
55
|
+
.card-price-2 {
|
56
|
+
.card-title {
|
57
|
+
margin-top: $card-spacer-x;
|
58
|
+
margin-bottom: ($card-spacer-y / 2);
|
59
|
+
font-size: 1.25rem;
|
60
|
+
font-weight: 400;
|
61
|
+
}
|
62
|
+
|
63
|
+
.card-price {
|
64
|
+
font-size: 3.125rem;
|
65
|
+
font-weight: 400;
|
66
|
+
}
|
67
|
+
|
68
|
+
.card-footer {
|
69
|
+
padding-top: 0;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
// card 3
|
76
|
+
.card-price-3 {
|
77
|
+
text-align: center;
|
78
|
+
|
79
|
+
.card-title {
|
80
|
+
@extend %eyebrow;
|
81
|
+
display: block;
|
82
|
+
color: $body-color;
|
83
|
+
margin-bottom: ($card-spacer-x * 1.5);
|
84
|
+
}
|
85
|
+
|
86
|
+
.card-price {
|
87
|
+
font-size: 3.75rem;
|
88
|
+
font-weight: 400;
|
89
|
+
}
|
90
|
+
|
91
|
+
.card-body {
|
92
|
+
padding-bottom: ($card-spacer-x * 1.5);
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
// text-whiteed colors
|
99
|
+
//
|
100
|
+
//
|
101
|
+
.text-white {
|
102
|
+
.card-price {
|
103
|
+
.card-footer {
|
104
|
+
border-color: $text-white-border;
|
105
|
+
|
106
|
+
&:hover {
|
107
|
+
background-color: $text-white-border;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
// Progress
|
2
|
+
//
|
3
|
+
//
|
4
|
+
//
|
5
|
+
|
6
|
+
|
7
|
+
//
|
8
|
+
// Progress Bar
|
9
|
+
//
|
10
|
+
|
11
|
+
.progress {
|
12
|
+
@include border-radius(.25rem);
|
13
|
+
overflow: visible;
|
14
|
+
|
15
|
+
.progress-bar {
|
16
|
+
@include border-radius(.25rem);
|
17
|
+
position: relative;
|
18
|
+
|
19
|
+
span {
|
20
|
+
@include transition();
|
21
|
+
position: absolute;
|
22
|
+
right: 0;
|
23
|
+
top: calc(100% + .5rem);
|
24
|
+
font-size: 12px;
|
25
|
+
font-weight: $font-weight-normal;
|
26
|
+
line-height: 1rem;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
.progress-title {
|
32
|
+
margin-bottom: 1em;
|
33
|
+
font-size: $font-size-sm;
|
34
|
+
font-weight: 600;
|
35
|
+
letter-spacing: $letter-spacing;
|
36
|
+
text-transform: uppercase;
|
37
|
+
}
|
38
|
+
|
39
|
+
%progress-text-white {
|
40
|
+
.progress {
|
41
|
+
background: rgba($white, .1);
|
42
|
+
}
|
43
|
+
|
44
|
+
.progress-bar {
|
45
|
+
background: $text-white-primary;
|
46
|
+
|
47
|
+
span {
|
48
|
+
color: $text-white-primary;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
.progress-circle {
|
54
|
+
position: relative;
|
55
|
+
|
56
|
+
canvas {
|
57
|
+
height: 100%!important;
|
58
|
+
width: 100%!important;
|
59
|
+
}
|
60
|
+
|
61
|
+
strong {
|
62
|
+
@include translate(-50%, -50%);
|
63
|
+
position: absolute;
|
64
|
+
font-size: 2.5rem;
|
65
|
+
font-family: $headings-font-family;
|
66
|
+
font-weight: 400;
|
67
|
+
top: 50%;
|
68
|
+
left: 50%;
|
69
|
+
}
|
70
|
+
}
|