vv5cv 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 (111) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +138 -0
  4. data/_includes/colorpicker.html +7 -0
  5. data/_includes/head.html +13 -0
  6. data/_includes/icon-at.svg +4 -0
  7. data/_includes/icon-globe.svg +4 -0
  8. data/_includes/icon-marker.svg +4 -0
  9. data/_includes/icon-phone.svg +4 -0
  10. data/_includes/zone-languages.html +27 -0
  11. data/_includes/zone-otherskills.html +22 -0
  12. data/_includes/zone-profile.html +32 -0
  13. data/_includes/zone-software.html +20 -0
  14. data/_layouts/default.html +10 -0
  15. data/_layouts/home.html +27 -0
  16. data/_layouts/page.html +9 -0
  17. data/_layouts/post.html +5 -0
  18. data/_sass/_bootstrap-grid.scss +37 -0
  19. data/_sass/_bootstrap-reboot.scss +9 -0
  20. data/_sass/_bootstrap.scss +41 -0
  21. data/_sass/_custom.scss +123 -0
  22. data/_sass/_fonts.scss +1 -0
  23. data/_sass/_variables.scss +33 -0
  24. data/_sass/bootstrap/_alert.scss +48 -0
  25. data/_sass/bootstrap/_badge.scss +48 -0
  26. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  27. data/_sass/bootstrap/_button-group.scss +198 -0
  28. data/_sass/bootstrap/_buttons.scss +141 -0
  29. data/_sass/bootstrap/_card.scss +223 -0
  30. data/_sass/bootstrap/_carousel.scss +185 -0
  31. data/_sass/bootstrap/_close.scss +29 -0
  32. data/_sass/bootstrap/_code.scss +64 -0
  33. data/_sass/bootstrap/_custom-forms.scss +254 -0
  34. data/_sass/bootstrap/_dropdown.scss +128 -0
  35. data/_sass/bootstrap/_forms.scss +390 -0
  36. data/_sass/bootstrap/_functions.scss +90 -0
  37. data/_sass/bootstrap/_grid.scss +53 -0
  38. data/_sass/bootstrap/_images.scss +43 -0
  39. data/_sass/bootstrap/_input-group.scss +176 -0
  40. data/_sass/bootstrap/_jumbotron.scss +16 -0
  41. data/_sass/bootstrap/_list-group.scss +114 -0
  42. data/_sass/bootstrap/_media.scss +8 -0
  43. data/_sass/bootstrap/_mixins.scss +41 -0
  44. data/_sass/bootstrap/_modal.scss +142 -0
  45. data/_sass/bootstrap/_nav.scss +118 -0
  46. data/_sass/bootstrap/_navbar.scss +284 -0
  47. data/_sass/bootstrap/_pagination.scss +66 -0
  48. data/_sass/bootstrap/_popover.scss +195 -0
  49. data/_sass/bootstrap/_print.scss +111 -0
  50. data/_sass/bootstrap/_progress.scss +32 -0
  51. data/_sass/bootstrap/_reboot.scss +481 -0
  52. data/_sass/bootstrap/_tables.scss +168 -0
  53. data/_sass/bootstrap/_tooltip.scss +107 -0
  54. data/_sass/bootstrap/_transitions.scss +34 -0
  55. data/_sass/bootstrap/_type.scss +123 -0
  56. data/_sass/bootstrap/_utilities.scss +14 -0
  57. data/_sass/bootstrap/_variables.scss +839 -0
  58. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  59. data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  60. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  61. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  62. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  63. data/_sass/bootstrap/mixins/_breakpoints.scss +105 -0
  64. data/_sass/bootstrap/mixins/_buttons.scss +83 -0
  65. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  66. data/_sass/bootstrap/mixins/_float.scss +9 -0
  67. data/_sass/bootstrap/mixins/_forms.scss +81 -0
  68. data/_sass/bootstrap/mixins/_gradients.scss +37 -0
  69. data/_sass/bootstrap/mixins/_grid-framework.scss +56 -0
  70. data/_sass/bootstrap/mixins/_grid.scss +47 -0
  71. data/_sass/bootstrap/mixins/_hover.scss +60 -0
  72. data/_sass/bootstrap/mixins/_image.scss +36 -0
  73. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  74. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  75. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  76. data/_sass/bootstrap/mixins/_navbar-align.scss +9 -0
  77. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  78. data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  79. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  80. data/_sass/bootstrap/mixins/_screen-reader.scss +35 -0
  81. data/_sass/bootstrap/mixins/_size.scss +6 -0
  82. data/_sass/bootstrap/mixins/_table-row.scss +30 -0
  83. data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  84. data/_sass/bootstrap/mixins/_text-hide.scss +8 -0
  85. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  86. data/_sass/bootstrap/mixins/_transition.scss +9 -0
  87. data/_sass/bootstrap/mixins/_visibility.scss +5 -0
  88. data/_sass/bootstrap/utilities/_align.scss +6 -0
  89. data/_sass/bootstrap/utilities/_background.scss +6 -0
  90. data/_sass/bootstrap/utilities/_borders.scss +52 -0
  91. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  92. data/_sass/bootstrap/utilities/_display.scss +53 -0
  93. data/_sass/bootstrap/utilities/_embed.scss +52 -0
  94. data/_sass/bootstrap/utilities/_flex.scss +44 -0
  95. data/_sass/bootstrap/utilities/_float.scss +9 -0
  96. data/_sass/bootstrap/utilities/_position.scss +25 -0
  97. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  98. data/_sass/bootstrap/utilities/_sizing.scss +10 -0
  99. data/_sass/bootstrap/utilities/_spacing.scss +41 -0
  100. data/_sass/bootstrap/utilities/_text.scss +49 -0
  101. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  102. data/assets/icons/android.svg +1 -0
  103. data/assets/icons/angular.svg +1 -0
  104. data/assets/icons/apple.svg +1 -0
  105. data/assets/icons/freebsd.svg +1 -0
  106. data/assets/icons/github.svg +1 -0
  107. data/assets/icons/line.svg +1 -0
  108. data/assets/icons/playstation.svg +1 -0
  109. data/assets/icons/slack.svg +1 -0
  110. data/assets/main.scss +10 -0
  111. metadata +183 -0
@@ -0,0 +1,141 @@
1
+ // scss-lint:disable QualifyingElement
2
+
3
+ //
4
+ // Base styles
5
+ //
6
+
7
+ .btn {
8
+ display: inline-block;
9
+ font-weight: $btn-font-weight;
10
+ text-align: center;
11
+ white-space: nowrap;
12
+ vertical-align: middle;
13
+ user-select: none;
14
+ border: $input-btn-border-width solid transparent;
15
+ @include button-size($input-btn-padding-y, $input-btn-padding-x, $font-size-base, $input-btn-line-height, $btn-border-radius);
16
+ @include transition($btn-transition);
17
+
18
+ // Share hover and focus styles
19
+ @include hover-focus {
20
+ text-decoration: none;
21
+ }
22
+ &:focus,
23
+ &.focus {
24
+ outline: 0;
25
+ box-shadow: $btn-focus-box-shadow;
26
+ }
27
+
28
+ // Disabled comes first so active can properly restyle
29
+ &.disabled,
30
+ &:disabled {
31
+ opacity: .65;
32
+ @include box-shadow(none);
33
+ }
34
+
35
+ &:active,
36
+ &.active {
37
+ background-image: none;
38
+ @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);
39
+ }
40
+ }
41
+
42
+ // Future-proof disabling of clicks on `<a>` elements
43
+ a.btn.disabled,
44
+ fieldset[disabled] a.btn {
45
+ pointer-events: none;
46
+ }
47
+
48
+
49
+ //
50
+ // Alternate buttons
51
+ //
52
+
53
+ @each $color, $value in $theme-colors {
54
+ .btn-#{$color} {
55
+ @include button-variant($value, $value);
56
+ }
57
+ }
58
+
59
+ @each $color, $value in $theme-colors {
60
+ .btn-outline-#{$color} {
61
+ @include button-outline-variant($value, #fff);
62
+ }
63
+ }
64
+
65
+
66
+ //
67
+ // Link buttons
68
+ //
69
+
70
+ // Make a button look and behave like a link
71
+ .btn-link {
72
+ font-weight: $font-weight-normal;
73
+ color: $link-color;
74
+ border-radius: 0;
75
+
76
+ &,
77
+ &:active,
78
+ &.active,
79
+ &:disabled {
80
+ background-color: transparent;
81
+ @include box-shadow(none);
82
+ }
83
+ &,
84
+ &:focus,
85
+ &:active {
86
+ border-color: transparent;
87
+ box-shadow: none;
88
+ }
89
+ @include hover {
90
+ border-color: transparent;
91
+ }
92
+ @include hover-focus {
93
+ color: $link-hover-color;
94
+ text-decoration: $link-hover-decoration;
95
+ background-color: transparent;
96
+ }
97
+ &:disabled {
98
+ color: $btn-link-disabled-color;
99
+
100
+ @include hover-focus {
101
+ text-decoration: none;
102
+ }
103
+ }
104
+ }
105
+
106
+
107
+ //
108
+ // Button Sizes
109
+ //
110
+
111
+ .btn-lg {
112
+ @include button-size($input-btn-padding-y-lg, $input-btn-padding-x-lg, $font-size-lg, $line-height-lg, $btn-border-radius-lg);
113
+ }
114
+
115
+ .btn-sm {
116
+ @include button-size($input-btn-padding-y-sm, $input-btn-padding-x-sm, $font-size-sm, $line-height-sm, $btn-border-radius-sm);
117
+ }
118
+
119
+
120
+ //
121
+ // Block button
122
+ //
123
+
124
+ .btn-block {
125
+ display: block;
126
+ width: 100%;
127
+ }
128
+
129
+ // Vertically space out multiple block buttons
130
+ .btn-block + .btn-block {
131
+ margin-top: $btn-block-spacing-y;
132
+ }
133
+
134
+ // Specificity overrides
135
+ input[type="submit"],
136
+ input[type="reset"],
137
+ input[type="button"] {
138
+ &.btn-block {
139
+ width: 100%;
140
+ }
141
+ }
@@ -0,0 +1,223 @@
1
+ //
2
+ // Base styles
3
+ //
4
+
5
+ .card {
6
+ position: relative;
7
+ display: flex;
8
+ flex-direction: column;
9
+ min-width: 0;
10
+ word-wrap: break-word;
11
+ background-color: $card-bg;
12
+ background-clip: border-box;
13
+ border: $card-border-width solid $card-border-color;
14
+ @include border-radius($card-border-radius);
15
+ }
16
+
17
+ .card-body {
18
+ // Enable `flex-grow: 1` for decks and groups so that card blocks take up
19
+ // as much space as possible, ensuring footers are aligned to the bottom.
20
+ flex: 1 1 auto;
21
+ padding: $card-spacer-x;
22
+ }
23
+
24
+ .card-title {
25
+ margin-bottom: $card-spacer-y;
26
+ }
27
+
28
+ .card-subtitle {
29
+ margin-top: -($card-spacer-y / 2);
30
+ margin-bottom: 0;
31
+ }
32
+
33
+ .card-text:last-child {
34
+ margin-bottom: 0;
35
+ }
36
+
37
+ .card-link {
38
+ @include hover {
39
+ text-decoration: none;
40
+ }
41
+
42
+ + .card-link {
43
+ margin-left: $card-spacer-x;
44
+ }
45
+ }
46
+
47
+ .card {
48
+ > .list-group:first-child {
49
+ .list-group-item:first-child {
50
+ @include border-top-radius($card-border-radius);
51
+ }
52
+ }
53
+
54
+ > .list-group:last-child {
55
+ .list-group-item:last-child {
56
+ @include border-bottom-radius($card-border-radius);
57
+ }
58
+ }
59
+ }
60
+
61
+
62
+ //
63
+ // Optional textual caps
64
+ //
65
+
66
+ .card-header {
67
+ padding: $card-spacer-y $card-spacer-x;
68
+ margin-bottom: 0; // Removes the default margin-bottom of <hN>
69
+ background-color: $card-cap-bg;
70
+ border-bottom: $card-border-width solid $card-border-color;
71
+
72
+ &:first-child {
73
+ @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
74
+ }
75
+ }
76
+
77
+ .card-footer {
78
+ padding: $card-spacer-y $card-spacer-x;
79
+ background-color: $card-cap-bg;
80
+ border-top: $card-border-width solid $card-border-color;
81
+
82
+ &:last-child {
83
+ @include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
84
+ }
85
+ }
86
+
87
+
88
+ //
89
+ // Header navs
90
+ //
91
+
92
+ .card-header-tabs {
93
+ margin-right: -($card-spacer-x / 2);
94
+ margin-bottom: -$card-spacer-y;
95
+ margin-left: -($card-spacer-x / 2);
96
+ border-bottom: 0;
97
+ }
98
+
99
+ .card-header-pills {
100
+ margin-right: -($card-spacer-x / 2);
101
+ margin-left: -($card-spacer-x / 2);
102
+ }
103
+
104
+ // Card image
105
+ .card-img-overlay {
106
+ position: absolute;
107
+ top: 0;
108
+ right: 0;
109
+ bottom: 0;
110
+ left: 0;
111
+ padding: $card-img-overlay-padding;
112
+ }
113
+
114
+ .card-img {
115
+ width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
116
+ @include border-radius($card-inner-border-radius);
117
+ }
118
+
119
+ // Card image caps
120
+ .card-img-top {
121
+ width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
122
+ @include border-top-radius($card-inner-border-radius);
123
+ }
124
+
125
+ .card-img-bottom {
126
+ width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
127
+ @include border-bottom-radius($card-inner-border-radius);
128
+ }
129
+
130
+
131
+ // Card deck
132
+
133
+ @include media-breakpoint-up(sm) {
134
+ .card-deck {
135
+ display: flex;
136
+ flex-flow: row wrap;
137
+ margin-right: -$card-deck-margin;
138
+ margin-left: -$card-deck-margin;
139
+
140
+ .card {
141
+ display: flex;
142
+ flex: 1 0 0%;
143
+ flex-direction: column;
144
+ margin-right: $card-deck-margin;
145
+ margin-left: $card-deck-margin;
146
+ }
147
+ }
148
+ }
149
+
150
+
151
+ //
152
+ // Card groups
153
+ //
154
+
155
+ @include media-breakpoint-up(sm) {
156
+ .card-group {
157
+ display: flex;
158
+ flex-flow: row wrap;
159
+
160
+ .card {
161
+ flex: 1 0 0%;
162
+
163
+ + .card {
164
+ margin-left: 0;
165
+ border-left: 0;
166
+ }
167
+
168
+ // Handle rounded corners
169
+ @if $enable-rounded {
170
+ &:first-child {
171
+ @include border-right-radius(0);
172
+
173
+ .card-img-top {
174
+ border-top-right-radius: 0;
175
+ }
176
+ .card-img-bottom {
177
+ border-bottom-right-radius: 0;
178
+ }
179
+ }
180
+ &:last-child {
181
+ @include border-left-radius(0);
182
+
183
+ .card-img-top {
184
+ border-top-left-radius: 0;
185
+ }
186
+ .card-img-bottom {
187
+ border-bottom-left-radius: 0;
188
+ }
189
+ }
190
+
191
+ &:not(:first-child):not(:last-child) {
192
+ border-radius: 0;
193
+
194
+ .card-img-top,
195
+ .card-img-bottom {
196
+ border-radius: 0;
197
+ }
198
+ }
199
+ }
200
+ }
201
+ }
202
+ }
203
+
204
+
205
+ //
206
+ // Columns
207
+ //
208
+
209
+ .card-columns {
210
+ .card {
211
+ margin-bottom: $card-columns-margin;
212
+ }
213
+
214
+ @include media-breakpoint-up(sm) {
215
+ column-count: $card-columns-count;
216
+ column-gap: $card-columns-gap;
217
+
218
+ .card {
219
+ display: inline-block; // Don't let them vertically span multiple columns
220
+ width: 100%; // Don't let their width change
221
+ }
222
+ }
223
+ }
@@ -0,0 +1,185 @@
1
+ // Wrapper for the slide container and indicators
2
+ .carousel {
3
+ position: relative;
4
+ }
5
+
6
+ .carousel-inner {
7
+ position: relative;
8
+ width: 100%;
9
+ overflow: hidden;
10
+ }
11
+
12
+ .carousel-item {
13
+ position: relative;
14
+ display: none;
15
+ align-items: center;
16
+ width: 100%;
17
+ @include transition($carousel-transition);
18
+ backface-visibility: hidden;
19
+ perspective: 1000px;
20
+ }
21
+
22
+ .carousel-item.active,
23
+ .carousel-item-next,
24
+ .carousel-item-prev {
25
+ display: block;
26
+ }
27
+
28
+ .carousel-item-next,
29
+ .carousel-item-prev {
30
+ position: absolute;
31
+ top: 0;
32
+ }
33
+
34
+ // CSS3 transforms when supported by the browser
35
+ .carousel-item-next.carousel-item-left,
36
+ .carousel-item-prev.carousel-item-right {
37
+ transform: translateX(0);
38
+
39
+ @supports (transform-style: preserve-3d) {
40
+ transform: translate3d(0, 0, 0);
41
+ }
42
+ }
43
+
44
+ .carousel-item-next,
45
+ .active.carousel-item-right {
46
+ transform: translateX(100%);
47
+
48
+ @supports (transform-style: preserve-3d) {
49
+ transform: translate3d(100%, 0, 0);
50
+ }
51
+ }
52
+
53
+ .carousel-item-prev,
54
+ .active.carousel-item-left {
55
+ transform: translateX(-100%);
56
+
57
+ @supports (transform-style: preserve-3d) {
58
+ transform: translate3d(-100%, 0, 0);
59
+ }
60
+ }
61
+
62
+
63
+ //
64
+ // Left/right controls for nav
65
+ //
66
+
67
+ .carousel-control-prev,
68
+ .carousel-control-next {
69
+ position: absolute;
70
+ top: 0;
71
+ bottom: 0;
72
+ // Use flex for alignment (1-3)
73
+ display: flex; // 1. allow flex styles
74
+ align-items: center; // 2. vertically center contents
75
+ justify-content: center; // 3. horizontally center contents
76
+ width: $carousel-control-width;
77
+ color: $carousel-control-color;
78
+ text-align: center;
79
+ opacity: $carousel-control-opacity;
80
+ // We can't have a transition here because WebKit cancels the carousel
81
+ // animation if you trip this while in the middle of another animation.
82
+
83
+ // Hover/focus state
84
+ @include hover-focus {
85
+ color: $carousel-control-color;
86
+ text-decoration: none;
87
+ outline: 0;
88
+ opacity: .9;
89
+ }
90
+ }
91
+ .carousel-control-prev {
92
+ left: 0;
93
+ }
94
+ .carousel-control-next {
95
+ right: 0;
96
+ }
97
+
98
+ // Icons for within
99
+ .carousel-control-prev-icon,
100
+ .carousel-control-next-icon {
101
+ display: inline-block;
102
+ width: $carousel-control-icon-width;
103
+ height: $carousel-control-icon-width;
104
+ background: transparent no-repeat center center;
105
+ background-size: 100% 100%;
106
+ }
107
+ .carousel-control-prev-icon {
108
+ background-image: $carousel-control-prev-icon-bg;
109
+ }
110
+ .carousel-control-next-icon {
111
+ background-image: $carousel-control-next-icon-bg;
112
+ }
113
+
114
+
115
+ // Optional indicator pips
116
+ //
117
+ // Add an ordered list with the following class and add a list item for each
118
+ // slide your carousel holds.
119
+
120
+ .carousel-indicators {
121
+ position: absolute;
122
+ right: 0;
123
+ bottom: 10px;
124
+ left: 0;
125
+ z-index: 15;
126
+ display: flex;
127
+ justify-content: center;
128
+ padding-left: 0; // override <ol> default
129
+ // Use the .carousel-control's width as margin so we don't overlay those
130
+ margin-right: $carousel-control-width;
131
+ margin-left: $carousel-control-width;
132
+ list-style: none;
133
+
134
+ li {
135
+ position: relative;
136
+ flex: 0 1 auto;
137
+ width: $carousel-indicator-width;
138
+ height: $carousel-indicator-height;
139
+ margin-right: $carousel-indicator-spacer;
140
+ margin-left: $carousel-indicator-spacer;
141
+ text-indent: -999px;
142
+ background-color: rgba($carousel-indicator-active-bg, .5);
143
+
144
+ // Use pseudo classes to increase the hit area by 10px on top and bottom.
145
+ &::before {
146
+ position: absolute;
147
+ top: -10px;
148
+ left: 0;
149
+ display: inline-block;
150
+ width: 100%;
151
+ height: 10px;
152
+ content: "";
153
+ }
154
+ &::after {
155
+ position: absolute;
156
+ bottom: -10px;
157
+ left: 0;
158
+ display: inline-block;
159
+ width: 100%;
160
+ height: 10px;
161
+ content: "";
162
+ }
163
+ }
164
+
165
+ .active {
166
+ background-color: $carousel-indicator-active-bg;
167
+ }
168
+ }
169
+
170
+
171
+ // Optional captions
172
+ //
173
+ //
174
+
175
+ .carousel-caption {
176
+ position: absolute;
177
+ right: ((100% - $carousel-caption-width) / 2);
178
+ bottom: 20px;
179
+ left: ((100% - $carousel-caption-width) / 2);
180
+ z-index: 10;
181
+ padding-top: 20px;
182
+ padding-bottom: 20px;
183
+ color: $carousel-caption-color;
184
+ text-align: center;
185
+ }