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,142 @@
1
+ // .modal-open - body class for killing the scroll
2
+ // .modal - container to scroll within
3
+ // .modal-dialog - positioning shell for the actual modal
4
+ // .modal-content - actual modal w/ bg and corners and stuff
5
+
6
+
7
+ // Kill the scroll on the body
8
+ .modal-open {
9
+ overflow: hidden;
10
+ }
11
+
12
+ // Container that the modal scrolls within
13
+ .modal {
14
+ position: fixed;
15
+ top: 0;
16
+ right: 0;
17
+ bottom: 0;
18
+ left: 0;
19
+ z-index: $zindex-modal;
20
+ display: none;
21
+ overflow: hidden;
22
+ // Prevent Chrome on Windows from adding a focus outline. For details, see
23
+ // https://github.com/twbs/bootstrap/pull/10951.
24
+ outline: 0;
25
+ // We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a
26
+ // gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342
27
+ // See also https://github.com/twbs/bootstrap/issues/17695
28
+
29
+ // When fading in the modal, animate it to slide down
30
+ &.fade .modal-dialog {
31
+ @include transition($modal-transition);
32
+ transform: translate(0, -25%);
33
+ }
34
+ &.show .modal-dialog { transform: translate(0, 0); }
35
+ }
36
+ .modal-open .modal {
37
+ overflow-x: hidden;
38
+ overflow-y: auto;
39
+ }
40
+
41
+ // Shell div to position the modal with bottom padding
42
+ .modal-dialog {
43
+ position: relative;
44
+ width: auto;
45
+ margin: $modal-dialog-margin;
46
+ }
47
+
48
+ // Actual modal
49
+ .modal-content {
50
+ position: relative;
51
+ display: flex;
52
+ flex-direction: column;
53
+ background-color: $modal-content-bg;
54
+ background-clip: padding-box;
55
+ border: $modal-content-border-width solid $modal-content-border-color;
56
+ @include border-radius($border-radius-lg);
57
+ @include box-shadow($modal-content-box-shadow-xs);
58
+ // Remove focus outline from opened modal
59
+ outline: 0;
60
+ }
61
+
62
+ // Modal background
63
+ .modal-backdrop {
64
+ position: fixed;
65
+ top: 0;
66
+ right: 0;
67
+ bottom: 0;
68
+ left: 0;
69
+ z-index: $zindex-modal-backdrop;
70
+ background-color: $modal-backdrop-bg;
71
+
72
+ // Fade for backdrop
73
+ &.fade { opacity: 0; }
74
+ &.show { opacity: $modal-backdrop-opacity; }
75
+ }
76
+
77
+ // Modal header
78
+ // Top section of the modal w/ title and dismiss
79
+ .modal-header {
80
+ display: flex;
81
+ align-items: center; // vertically center it
82
+ justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends
83
+ padding: $modal-header-padding;
84
+ border-bottom: $modal-header-border-width solid $modal-header-border-color;
85
+ }
86
+
87
+ // Title text within header
88
+ .modal-title {
89
+ margin-bottom: 0;
90
+ line-height: $modal-title-line-height;
91
+ }
92
+
93
+ // Modal body
94
+ // Where all modal content resides (sibling of .modal-header and .modal-footer)
95
+ .modal-body {
96
+ position: relative;
97
+ // Enable `flex-grow: 1` so that the body take up as much space as possible
98
+ // when should there be a fixed height on `.modal-dialog`.
99
+ flex: 1 1 auto;
100
+ padding: $modal-inner-padding;
101
+ }
102
+
103
+ // Footer (for actions)
104
+ .modal-footer {
105
+ display: flex;
106
+ align-items: center; // vertically center
107
+ justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items
108
+ padding: $modal-inner-padding;
109
+ border-top: $modal-footer-border-width solid $modal-footer-border-color;
110
+
111
+ // Easily place margin between footer elements
112
+ > :not(:first-child) { margin-left: .25rem; }
113
+ > :not(:last-child) { margin-right: .25rem; }
114
+ }
115
+
116
+ // Measure scrollbar width for padding body during modal show/hide
117
+ .modal-scrollbar-measure {
118
+ position: absolute;
119
+ top: -9999px;
120
+ width: 50px;
121
+ height: 50px;
122
+ overflow: scroll;
123
+ }
124
+
125
+ // Scale up the modal
126
+ @include media-breakpoint-up(sm) {
127
+ // Automatically set modal's width for larger viewports
128
+ .modal-dialog {
129
+ max-width: $modal-md;
130
+ margin: $modal-dialog-margin-y-sm-up auto;
131
+ }
132
+
133
+ .modal-content {
134
+ @include box-shadow($modal-content-box-shadow-sm-up);
135
+ }
136
+
137
+ .modal-sm { max-width: $modal-sm; }
138
+ }
139
+
140
+ @include media-breakpoint-up(lg) {
141
+ .modal-lg { max-width: $modal-lg; }
142
+ }
@@ -0,0 +1,118 @@
1
+ // Base class
2
+ //
3
+ // Kickstart any navigation component with a set of style resets. Works with
4
+ // `<nav>`s or `<ul>`s.
5
+
6
+ .nav {
7
+ display: flex;
8
+ flex-wrap: wrap;
9
+ padding-left: 0;
10
+ margin-bottom: 0;
11
+ list-style: none;
12
+ }
13
+
14
+ .nav-link {
15
+ display: block;
16
+ padding: $nav-link-padding-y $nav-link-padding-x;
17
+
18
+ @include hover-focus {
19
+ text-decoration: none;
20
+ }
21
+
22
+ // Disabled state lightens text
23
+ &.disabled {
24
+ color: $nav-link-disabled-color;
25
+ }
26
+ }
27
+
28
+ //
29
+ // Tabs
30
+ //
31
+
32
+ .nav-tabs {
33
+ border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;
34
+
35
+ .nav-item {
36
+ margin-bottom: -$nav-tabs-border-width;
37
+ }
38
+
39
+ .nav-link {
40
+ border: $nav-tabs-border-width solid transparent;
41
+ @include border-top-radius($nav-tabs-border-radius);
42
+
43
+ @include hover-focus {
44
+ border-color: $nav-tabs-link-hover-border-color $nav-tabs-link-hover-border-color $nav-tabs-border-color;
45
+ }
46
+
47
+ &.disabled {
48
+ color: $nav-link-disabled-color;
49
+ background-color: transparent;
50
+ border-color: transparent;
51
+ }
52
+ }
53
+
54
+ .nav-link.active,
55
+ .nav-item.show .nav-link {
56
+ color: $nav-tabs-link-active-color;
57
+ background-color: $nav-tabs-link-active-bg;
58
+ border-color: $nav-tabs-link-active-border-color $nav-tabs-link-active-border-color $nav-tabs-link-active-bg;
59
+ }
60
+
61
+ .dropdown-menu {
62
+ // Make dropdown border overlap tab border
63
+ margin-top: -$nav-tabs-border-width;
64
+ // Remove the top rounded corners here since there is a hard edge above the menu
65
+ @include border-top-radius(0);
66
+ }
67
+ }
68
+
69
+
70
+ //
71
+ // Pills
72
+ //
73
+
74
+ .nav-pills {
75
+ .nav-link {
76
+ @include border-radius($nav-pills-border-radius);
77
+
78
+ &.active,
79
+ .show > & {
80
+ color: $nav-pills-link-active-color;
81
+ background-color: $nav-pills-link-active-bg;
82
+ }
83
+ }
84
+ }
85
+
86
+
87
+ //
88
+ // Justified variants
89
+ //
90
+
91
+ .nav-fill {
92
+ .nav-item {
93
+ flex: 1 1 auto;
94
+ text-align: center;
95
+ }
96
+ }
97
+
98
+ .nav-justified {
99
+ .nav-item {
100
+ flex-basis: 0;
101
+ flex-grow: 1;
102
+ text-align: center;
103
+ }
104
+ }
105
+
106
+
107
+ // Tabbable tabs
108
+ //
109
+ // Hide tabbable panes to start, show them when `.active`
110
+
111
+ .tab-content {
112
+ > .tab-pane {
113
+ display: none;
114
+ }
115
+ > .active {
116
+ display: block;
117
+ }
118
+ }
@@ -0,0 +1,284 @@
1
+ // Contents
2
+ //
3
+ // Navbar
4
+ // Navbar brand
5
+ // Navbar nav
6
+ // Navbar text
7
+ // Navbar divider
8
+ // Responsive navbar
9
+ // Navbar position
10
+ // Navbar themes
11
+
12
+
13
+ // Navbar
14
+ //
15
+ // Provide a static navbar from which we expand to create full-width, fixed, and
16
+ // other navbar variations.
17
+
18
+ .navbar {
19
+ position: relative;
20
+ display: flex;
21
+ flex-wrap: wrap; // allow us to do the line break for collapsing content
22
+ align-items: center;
23
+ justify-content: space-between; // space out brand from logo
24
+ padding: $navbar-padding-y $navbar-padding-x;
25
+
26
+ // Because flex properties aren't inherited, we need to redeclare these first
27
+ // few properities so that content nested within behave properly.
28
+ > .container,
29
+ > .container-fluid {
30
+ display: flex;
31
+ flex-wrap: wrap;
32
+ align-items: center;
33
+ justify-content: space-between;
34
+ }
35
+ }
36
+
37
+
38
+ // Navbar brand
39
+ //
40
+ // Used for brand, project, or site names.
41
+
42
+ .navbar-brand {
43
+ display: inline-block;
44
+ padding-top: $navbar-brand-padding-y;
45
+ padding-bottom: $navbar-brand-padding-y;
46
+ margin-right: $navbar-padding-x;
47
+ font-size: $navbar-brand-font-size;
48
+ line-height: inherit;
49
+ white-space: nowrap;
50
+
51
+ @include hover-focus {
52
+ text-decoration: none;
53
+ }
54
+ }
55
+
56
+
57
+ // Navbar nav
58
+ //
59
+ // Custom navbar navigation (doesn't require `.nav`, but does make use of `.nav-link`).
60
+
61
+ .navbar-nav {
62
+ display: flex;
63
+ flex-direction: column; // cannot use `inherit` to get the `.navbar`s value
64
+ padding-left: 0;
65
+ margin-bottom: 0;
66
+ list-style: none;
67
+
68
+ .nav-link {
69
+ padding-right: 0;
70
+ padding-left: 0;
71
+ }
72
+
73
+ .dropdown-menu {
74
+ position: static;
75
+ float: none;
76
+ }
77
+ }
78
+
79
+
80
+ // Navbar text
81
+ //
82
+ //
83
+
84
+ .navbar-text {
85
+ display: inline-block;
86
+ padding-top: $nav-link-padding-y;
87
+ padding-bottom: $nav-link-padding-y;
88
+ }
89
+
90
+
91
+ // Responsive navbar
92
+ //
93
+ // Custom styles for responsive collapsing and toggling of navbar contents.
94
+ // Powered by the collapse Bootstrap JavaScript plugin.
95
+
96
+ // When collapsed, prevent the toggleable navbar contents from appearing in
97
+ // the default flexbox row orienation. Requires the use of `flex-wrap: wrap`
98
+ // on the `.navbar` parent.
99
+ .navbar-collapse {
100
+ flex-basis: 100%;
101
+ // For always expanded or extra full navbars, ensure content aligns itself
102
+ // properly vertically. Can be easily overridden with flex utilities.
103
+ align-items: center;
104
+ }
105
+
106
+ // Button for toggling the navbar when in its collapsed state
107
+ .navbar-toggler {
108
+ padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
109
+ font-size: $navbar-toggler-font-size;
110
+ line-height: 1;
111
+ background: transparent; // remove default button style
112
+ border: $border-width solid transparent; // remove default button style
113
+ @include border-radius($navbar-toggler-border-radius);
114
+
115
+ @include hover-focus {
116
+ text-decoration: none;
117
+ }
118
+ }
119
+
120
+ // Keep as a separate element so folks can easily override it with another icon
121
+ // or image file as needed.
122
+ .navbar-toggler-icon {
123
+ display: inline-block;
124
+ width: 1.5em;
125
+ height: 1.5em;
126
+ vertical-align: middle;
127
+ content: "";
128
+ background: no-repeat center center;
129
+ background-size: 100% 100%;
130
+ }
131
+
132
+ // Generate series of `.navbar-expand-*` responsive classes for configuring
133
+ // where your navbar collapses.
134
+ .navbar-expand {
135
+ @each $breakpoint in map-keys($grid-breakpoints) {
136
+ $next: breakpoint-next($breakpoint, $grid-breakpoints);
137
+ $infix: breakpoint-infix($next, $grid-breakpoints);
138
+
139
+ &#{$infix} {
140
+ @include media-breakpoint-down($breakpoint) {
141
+ > .container,
142
+ > .container-fluid {
143
+ padding-right: 0;
144
+ padding-left: 0;
145
+ }
146
+ }
147
+
148
+ @include media-breakpoint-up($next) {
149
+ flex-direction: row;
150
+ flex-wrap: nowrap;
151
+ justify-content: flex-start;
152
+
153
+ .navbar-nav {
154
+ flex-direction: row;
155
+
156
+ .dropdown-menu {
157
+ position: absolute;
158
+ }
159
+
160
+ .dropdown-menu-right {
161
+ right: 0;
162
+ left: auto; // Reset the default from `.dropdown-menu`
163
+ }
164
+
165
+ .nav-link {
166
+ padding-right: .5rem;
167
+ padding-left: .5rem;
168
+ }
169
+ }
170
+
171
+ // For nesting containers, have to redeclare for alignment purposes
172
+ > .container,
173
+ > .container-fluid {
174
+ flex-wrap: nowrap;
175
+ }
176
+
177
+ // scss-lint:disable ImportantRule
178
+ .navbar-collapse {
179
+ display: flex !important;
180
+ }
181
+ // scss-lint:enable ImportantRule
182
+
183
+ .navbar-toggler {
184
+ display: none;
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+
191
+
192
+ // Navbar themes
193
+ //
194
+ // Styles for switching between navbars with light or dark background.
195
+
196
+ // Dark links against a light background
197
+ .navbar-light {
198
+ .navbar-brand {
199
+ color: $navbar-light-active-color;
200
+
201
+ @include hover-focus {
202
+ color: $navbar-light-active-color;
203
+ }
204
+ }
205
+
206
+ .navbar-nav {
207
+ .nav-link {
208
+ color: $navbar-light-color;
209
+
210
+ @include hover-focus {
211
+ color: $navbar-light-hover-color;
212
+ }
213
+
214
+ &.disabled {
215
+ color: $navbar-light-disabled-color;
216
+ }
217
+ }
218
+
219
+ .show > .nav-link,
220
+ .active > .nav-link,
221
+ .nav-link.show,
222
+ .nav-link.active {
223
+ color: $navbar-light-active-color;
224
+ }
225
+ }
226
+
227
+ .navbar-toggler {
228
+ color: $navbar-light-color;
229
+ border-color: $navbar-light-toggler-border-color;
230
+ }
231
+
232
+ .navbar-toggler-icon {
233
+ background-image: $navbar-light-toggler-icon-bg;
234
+ }
235
+
236
+ .navbar-text {
237
+ color: $navbar-light-color;
238
+ }
239
+ }
240
+
241
+ // White links against a dark background
242
+ .navbar-dark {
243
+ .navbar-brand {
244
+ color: $navbar-dark-active-color;
245
+
246
+ @include hover-focus {
247
+ color: $navbar-dark-active-color;
248
+ }
249
+ }
250
+
251
+ .navbar-nav {
252
+ .nav-link {
253
+ color: $navbar-dark-color;
254
+
255
+ @include hover-focus {
256
+ color: $navbar-dark-hover-color;
257
+ }
258
+
259
+ &.disabled {
260
+ color: $navbar-dark-disabled-color;
261
+ }
262
+ }
263
+
264
+ .show > .nav-link,
265
+ .active > .nav-link,
266
+ .nav-link.show,
267
+ .nav-link.active {
268
+ color: $navbar-dark-active-color;
269
+ }
270
+ }
271
+
272
+ .navbar-toggler {
273
+ color: $navbar-dark-color;
274
+ border-color: $navbar-dark-toggler-border-color;
275
+ }
276
+
277
+ .navbar-toggler-icon {
278
+ background-image: $navbar-dark-toggler-icon-bg;
279
+ }
280
+
281
+ .navbar-text {
282
+ color: $navbar-dark-color;
283
+ }
284
+ }