vbax-template_go 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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,172 @@
1
+ /* Colors
2
+ ------------------------ */
3
+ /* Main Colors
4
+ ------------------------ */
5
+ $aqua:#4be1ce;
6
+ $blue:#23abc4;
7
+ $darkblue:#0011f3;
8
+ $gold:#cba173;
9
+ $green:#1abcb0;
10
+ $indigo:#2a83e8;
11
+ $mint:#27e6c3;
12
+ $orange:#e48343;
13
+ $pink:#f01831;
14
+ $red:#e95e49;
15
+ $violet:#6060d9;
16
+ $yellow:#f1b243;
17
+
18
+ /* Main Colors
19
+ ------------------------ */
20
+ $hhgb12-color: #353535;
21
+ $white: #fff;
22
+ $date-color: #999999;
23
+ $text-color: #6c6c6c;
24
+ $heading-color: #111111;
25
+ $subheading-color: #acacac;
26
+ $bg-light: #f9fbfc;
27
+ $bg-dark: #181821;
28
+ $dark-grey: #424242;
29
+ $light-grey: #a3a3a3;
30
+ $border-color: #e5e9ec;
31
+
32
+ // opacity
33
+ $white-opacity:rgba(255, 255, 255, 0.85);
34
+ $dark-opacity:rgba(0,0,0,.5);
35
+ $dark-opacity-3:rgba(0,0,0,.3);
36
+
37
+ /* 🍦 ⚠️
38
+
39
+ .btn-aqua-vibrant {
40
+ background-color: #4be1ce;
41
+ box-shadow: 0 2px 2px 0 rgba(75, 225, 206, 0.14), 0 3px 1px -2px rgba(75, 225, 206, 0.2), 0 1px 5px 0 rgba(75, 225, 206, 0.12);
42
+ transition: all 0.3s ease-in-out;
43
+ }
44
+ /*-------------------------------------------------------*/
45
+ /* Single Project
46
+ /*-------------------------------------------------------*/
47
+
48
+ @mixin product_meta{
49
+ display: flex;
50
+ .product_meta_col{
51
+ width: 50%;
52
+ }
53
+ .detail-wrap {
54
+ display: table;
55
+ table-layout: fixed;
56
+ width: 100%;
57
+ }
58
+
59
+ .detail-label,
60
+ .detail-value {
61
+ display: table-cell;
62
+ line-height: 23px;
63
+ font-size: 12px;
64
+ font-weight: bolder;
65
+ width: 50%;
66
+ }
67
+
68
+ .detail-label {
69
+ min-width: 110px;
70
+ color: $heading-color;
71
+ }
72
+ span {
73
+ // font-family: $alt-font;
74
+ font-style: italic;
75
+ color: $light-grey;
76
+ }
77
+ }
78
+ .product_meta {
79
+ @include product_meta
80
+ }
81
+ @mixin storyStyle{
82
+ width: 50%;
83
+ display: flex;
84
+ flex-direction: column;
85
+ justify-content: center;
86
+ align-items: center;
87
+ text-align: center;
88
+ }
89
+ @mixin storylogoBg{
90
+ border-radius: 50%;
91
+ width: 60px;
92
+ border: 1px solid;
93
+ height: 60px;
94
+ display: flex;
95
+ justify-content: center;
96
+ align-items: center;
97
+ text-align: center;
98
+ img{
99
+ padding: 19%;
100
+ }
101
+ }
102
+ .Story__wrapper{
103
+ @include storyStyle;
104
+ width:100%;
105
+ .Story__image{
106
+ @include storylogoBg;
107
+ width: 65px;
108
+ height: 65px;
109
+ border: 1px solid $pink;
110
+ background-repeat: no-repeat;
111
+ background-size: cover;
112
+ background-position: center center;
113
+ }
114
+ .Story__tittle{
115
+
116
+ }
117
+ }
118
+
119
+ .project-description {
120
+ // padding-left: 5%;TODO
121
+ &#inside_productionSow{
122
+ .mt-30 {
123
+ margin: 0px 0px;
124
+ hr {
125
+ margin: 11px 0;
126
+ }
127
+ .product_meta {
128
+ @include product_meta;
129
+ .detail-label,
130
+ .detail-value {
131
+ line-height: 20px;
132
+ }
133
+ }
134
+ .entry-author-box {
135
+ padding: 10px 10px;
136
+ background-color: #f9fbfc;
137
+ position: relative;
138
+ // margin-top: 30px;
139
+ margin-bottom: 0px;
140
+ img{
141
+ display: block;
142
+ border-radius: 50%;
143
+ position: absolute;
144
+ top: 10px;
145
+ right: 10px;
146
+ width: 40px;
147
+ }
148
+ .author-info {
149
+ padding: 0px;
150
+ }
151
+ }
152
+ .entry-partnership-box {
153
+ position: relative;
154
+ // margin-top: 30px;
155
+ margin-bottom: 0px;
156
+ .projet-colaborators{
157
+ display: flex;
158
+ width: 100%;
159
+ .projet-colaborator{
160
+ @include storyStyle;
161
+ }
162
+ .projet-colaborator-logo{
163
+ @include storylogoBg;
164
+ }
165
+ }
166
+ .author-info {
167
+ padding: 0px;
168
+ }
169
+ }
170
+ }
171
+ }
172
+ }
@@ -0,0 +1,12 @@
1
+ //
2
+ // sidebar
3
+ //
4
+ //
5
+
6
+ .sidebar {
7
+ > * {
8
+ &:not(:first-child) {
9
+ margin-top: 30px;
10
+ }
11
+ }
12
+ }
@@ -0,0 +1,114 @@
1
+ //
2
+ // Sizing
3
+ //
4
+
5
+ @each $breakpoint in map-keys($grid-breakpoints) {
6
+ @include media-breakpoint-up($breakpoint) {
7
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
8
+
9
+ @each $prop, $abbrev in (margin: m, padding: p) {
10
+ @each $size, $length in $sizes {
11
+
12
+ .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
13
+ .#{$abbrev}t#{$infix}-#{$size},
14
+ .#{$abbrev}y#{$infix}-#{$size} {
15
+ #{$prop}-top: $length !important;
16
+ }
17
+ .#{$abbrev}r#{$infix}-#{$size},
18
+ .#{$abbrev}x#{$infix}-#{$size} {
19
+ #{$prop}-right: $length !important;
20
+ }
21
+ .#{$abbrev}b#{$infix}-#{$size},
22
+ .#{$abbrev}y#{$infix}-#{$size} {
23
+ #{$prop}-bottom: $length !important;
24
+ }
25
+ .#{$abbrev}l#{$infix}-#{$size},
26
+ .#{$abbrev}x#{$infix}-#{$size} {
27
+ #{$prop}-left: $length !important;
28
+ }
29
+ }
30
+ }
31
+ }
32
+ }
33
+
34
+
35
+ // Vertical Height
36
+ $height-list: ( 10, 20, 25, 30, 40, 50, 60, 70, 75, 80, 90, 100);
37
+
38
+ @each $value in $height-list {
39
+ .vh-#{$value} {
40
+ height: #{$value}vh;
41
+ min-height: #{$value}vh;
42
+ }
43
+ }
44
+
45
+ @each $value in $height-list {
46
+ .vh-max-#{$value} {
47
+ max-height: #{$value}vh;
48
+ }
49
+ }
50
+
51
+ @include media-breakpoint-down(sm) {
52
+ [class*="vh-"] {
53
+ height: auto;
54
+ }
55
+ }
56
+
57
+
58
+
59
+
60
+
61
+ // Gutter
62
+ $gutter-list: ();
63
+ $gutter-list: map-merge((
64
+ 1: 10,
65
+ 2: 20,
66
+ 3: 30,
67
+ 4: 40,
68
+ 5: 50,
69
+ ), $gutter-list);
70
+
71
+ @each $breakpoint in map-keys($grid-breakpoints) {
72
+ @include media-breakpoint-up($breakpoint) {
73
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
74
+
75
+ @each $name, $value in $gutter-list {
76
+ .gutter#{$infix}-#{$name} {
77
+ margin: -#{$value/2}px;
78
+
79
+ > * {
80
+ margin-bottom: 0!important;
81
+ padding: #{$value/2}px;
82
+ }
83
+ }
84
+ }
85
+
86
+ }
87
+ }
88
+
89
+
90
+
91
+ .gutter-0 {
92
+ padding: 1px 1px 0 0;
93
+ margin-left: 0;
94
+ margin-right: 0;
95
+
96
+ > * {
97
+ padding: 0;
98
+ margin: -1px -1px 0 0!important;
99
+ }
100
+ }
101
+
102
+ .gutter-1 [class*="-double"]::before { padding-top: calc(200% + 10px); }
103
+ .gutter-2 [class*="-double"]::before { padding-top: calc(200% + 20px); }
104
+ .gutter-3 [class*="-double"]::before { padding-top: calc(200% + 30px); }
105
+
106
+
107
+
108
+ // Flex Width
109
+ @each $size, $length in $sizes {
110
+ .fw-#{$size} {
111
+ flex: 0 0 $length!important;
112
+ width: $length!important;
113
+ }
114
+ }
@@ -0,0 +1,197 @@
1
+ // Typography
2
+ //
3
+ //
4
+ //
5
+ //
6
+
7
+
8
+
9
+ //
10
+ // Spacing
11
+ //
12
+ h1, h2, h3, h4, h5,
13
+ .h1, .h2, .h3, .h4, .h5 {
14
+ margin-bottom: .5em;
15
+
16
+ &:last-child { margin-bottom: 0; }
17
+ }
18
+
19
+ p, span, b, ul, ol,
20
+ blockquote {
21
+ &:last-child { margin-bottom: 0; }
22
+ }
23
+
24
+
25
+
26
+ //
27
+ // Global
28
+ //
29
+ figure {
30
+ margin: 0;
31
+ }
32
+
33
+ strong, b {
34
+ color: $black;
35
+ font-weight: $font-weight-bold;
36
+ }
37
+
38
+ code {
39
+ display: inline-block;
40
+ margin-bottom: 1rem;
41
+ }
42
+
43
+ p {
44
+ line-height: 1.75em;
45
+ color: $gray-300;
46
+ }
47
+
48
+ small {
49
+ color: $gray-300;
50
+ }
51
+
52
+ a:hover {
53
+ text-decoration: none;
54
+ }
55
+
56
+ hr {
57
+ margin-top: 1.875rem;
58
+ margin-bottom: 1.875rem;
59
+ }
60
+
61
+ blockquote {
62
+ p {
63
+ color: $black;
64
+ }
65
+ }
66
+
67
+
68
+
69
+ //
70
+ // Decorated
71
+ //
72
+ .text-decorated {
73
+ position: relative;
74
+
75
+ &::after {
76
+ content: "";
77
+ position: absolute;
78
+ left: 0;
79
+ top: .6em;
80
+ width: 5rem; // 80px
81
+ height: $border-width;
82
+ background: $black;
83
+ @include translate(-140%,0);
84
+ }
85
+
86
+ &[class*="padding"] {
87
+ padding-left: 6.875rem;
88
+
89
+ &::after {
90
+ @include translate(0,0);
91
+ }
92
+ }
93
+ }
94
+
95
+ %text-decorated-text-white {
96
+ &::after {
97
+ background: $white;
98
+ }
99
+ }
100
+
101
+
102
+
103
+ //
104
+ // Text Shadow
105
+ //
106
+ %text-shadow {
107
+ h1, h2, h3, h4, h5,
108
+ .h1, .h2, .h3, .h4, .h5,
109
+ p, span, b, i {
110
+ @include text-shadow();
111
+ }
112
+ }
113
+
114
+ .text-shadow {
115
+ @include text-shadow();
116
+ }
117
+
118
+
119
+
120
+ //
121
+ // Styled link
122
+ //
123
+ %link {
124
+ display: inline-block;
125
+ position: relative;
126
+
127
+ @include hover-focus {
128
+ &::before {
129
+ @include transition();
130
+ top: calc(100% + 2px);
131
+ opacity: 1;
132
+ }
133
+ }
134
+
135
+ &::before {
136
+ @include transition();
137
+ content: "";
138
+ position: absolute;
139
+ top: 100%;
140
+ display: block;
141
+ width: calc(100% - 2px);
142
+ height: $border-width;
143
+ background: currentColor;
144
+ opacity: 0;
145
+ }
146
+ }
147
+
148
+ .link {
149
+ @extend %link;
150
+ }
151
+
152
+
153
+
154
+ // Eyebrow
155
+ %eyebrow {
156
+ display: inline-block;
157
+ font-size: $font-size-sm;
158
+ font-weight: 400;
159
+ text-transform: uppercase;
160
+ letter-spacing: $letter-spacing;
161
+ }
162
+
163
+ .eyebrow {
164
+ @extend %eyebrow;
165
+ }
166
+
167
+
168
+ // Error text
169
+ .error-text {
170
+ font-size: 10rem;
171
+ font-weight: 700;
172
+ line-height: 10rem;
173
+ margin-bottom: .25em;
174
+ }
175
+
176
+
177
+ .letter-spacing {
178
+ letter-spacing: $letter-spacing;
179
+ }
180
+
181
+
182
+
183
+ // Responsive
184
+ //
185
+ //
186
+
187
+ @include media-breakpoint-down(md) {
188
+ .display-1 { font-size: ($display1-size * .65) }
189
+ .display-2 { font-size: ($display2-size * .65) }
190
+ .display-3 { font-size: ($display3-size * .65) }
191
+ .display-4 { font-size: ($display4-size * .65) }
192
+ h1, .h1 { font-size: ($h1-font-size * .75) }
193
+ h2, .h2 { font-size: ($h2-font-size * .75) }
194
+ h3, .h3 { font-size: ($h3-font-size * .75) }
195
+ h4, .h4 { font-size: ($h4-font-size * .75) }
196
+ h5, .h5 { font-size: ($h5-font-size * .75) }
197
+ }