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,3 @@
1
+ .clearfix {
2
+ @include clearfix();
3
+ }
@@ -0,0 +1,53 @@
1
+ //
2
+ // Utilities for common `display` values
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
+ .d#{$infix}-none { display: none !important; }
10
+ .d#{$infix}-inline { display: inline !important; }
11
+ .d#{$infix}-inline-block { display: inline-block !important; }
12
+ .d#{$infix}-block { display: block !important; }
13
+ .d#{$infix}-table { display: table !important; }
14
+ .d#{$infix}-table-cell { display: table-cell !important; }
15
+ .d#{$infix}-flex { display: flex !important; }
16
+ .d#{$infix}-inline-flex { display: inline-flex !important; }
17
+ }
18
+ }
19
+
20
+
21
+ //
22
+ // Utilities for toggling `display` in print
23
+ //
24
+
25
+ .d-print-block {
26
+ display: none !important;
27
+
28
+ @media print {
29
+ display: block !important;
30
+ }
31
+ }
32
+
33
+ .d-print-inline {
34
+ display: none !important;
35
+
36
+ @media print {
37
+ display: inline !important;
38
+ }
39
+ }
40
+
41
+ .d-print-inline-block {
42
+ display: none !important;
43
+
44
+ @media print {
45
+ display: inline-block !important;
46
+ }
47
+ }
48
+
49
+ .d-print-none {
50
+ @media print {
51
+ display: none !important;
52
+ }
53
+ }
@@ -0,0 +1,52 @@
1
+ // Credit: Nicolas Gallagher and SUIT CSS.
2
+
3
+ .embed-responsive {
4
+ position: relative;
5
+ display: block;
6
+ width: 100%;
7
+ padding: 0;
8
+ overflow: hidden;
9
+
10
+ &::before {
11
+ display: block;
12
+ content: "";
13
+ }
14
+
15
+ .embed-responsive-item,
16
+ iframe,
17
+ embed,
18
+ object,
19
+ video {
20
+ position: absolute;
21
+ top: 0;
22
+ bottom: 0;
23
+ left: 0;
24
+ width: 100%;
25
+ height: 100%;
26
+ border: 0;
27
+ }
28
+ }
29
+
30
+ .embed-responsive-21by9 {
31
+ &::before {
32
+ padding-top: percentage(9 / 21);
33
+ }
34
+ }
35
+
36
+ .embed-responsive-16by9 {
37
+ &::before {
38
+ padding-top: percentage(9 / 16);
39
+ }
40
+ }
41
+
42
+ .embed-responsive-4by3 {
43
+ &::before {
44
+ padding-top: percentage(3 / 4);
45
+ }
46
+ }
47
+
48
+ .embed-responsive-1by1 {
49
+ &::before {
50
+ padding-top: percentage(1 / 1);
51
+ }
52
+ }
@@ -0,0 +1,44 @@
1
+ // Flex variation
2
+ //
3
+ // Custom styles for additional flex alignment options.
4
+
5
+ @each $breakpoint in map-keys($grid-breakpoints) {
6
+ @include media-breakpoint-up($breakpoint) {
7
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
8
+
9
+ .flex#{$infix}-row { flex-direction: row !important; }
10
+ .flex#{$infix}-column { flex-direction: column !important; }
11
+ .flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }
12
+ .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }
13
+
14
+ .flex#{$infix}-wrap { flex-wrap: wrap !important; }
15
+ .flex#{$infix}-nowrap { flex-wrap: nowrap !important; }
16
+ .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }
17
+
18
+ .justify-content#{$infix}-start { justify-content: flex-start !important; }
19
+ .justify-content#{$infix}-end { justify-content: flex-end !important; }
20
+ .justify-content#{$infix}-center { justify-content: center !important; }
21
+ .justify-content#{$infix}-between { justify-content: space-between !important; }
22
+ .justify-content#{$infix}-around { justify-content: space-around !important; }
23
+
24
+ .align-items#{$infix}-start { align-items: flex-start !important; }
25
+ .align-items#{$infix}-end { align-items: flex-end !important; }
26
+ .align-items#{$infix}-center { align-items: center !important; }
27
+ .align-items#{$infix}-baseline { align-items: baseline !important; }
28
+ .align-items#{$infix}-stretch { align-items: stretch !important; }
29
+
30
+ .align-content#{$infix}-start { align-content: flex-start !important; }
31
+ .align-content#{$infix}-end { align-content: flex-end !important; }
32
+ .align-content#{$infix}-center { align-content: center !important; }
33
+ .align-content#{$infix}-between { align-content: space-between !important; }
34
+ .align-content#{$infix}-around { align-content: space-around !important; }
35
+ .align-content#{$infix}-stretch { align-content: stretch !important; }
36
+
37
+ .align-self#{$infix}-auto { align-self: auto !important; }
38
+ .align-self#{$infix}-start { align-self: flex-start !important; }
39
+ .align-self#{$infix}-end { align-self: flex-end !important; }
40
+ .align-self#{$infix}-center { align-self: center !important; }
41
+ .align-self#{$infix}-baseline { align-self: baseline !important; }
42
+ .align-self#{$infix}-stretch { align-self: stretch !important; }
43
+ }
44
+ }
@@ -0,0 +1,9 @@
1
+ @each $breakpoint in map-keys($grid-breakpoints) {
2
+ @include media-breakpoint-up($breakpoint) {
3
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
4
+
5
+ .float#{$infix}-left { @include float-left; }
6
+ .float#{$infix}-right { @include float-right; }
7
+ .float#{$infix}-none { @include float-none; }
8
+ }
9
+ }
@@ -0,0 +1,25 @@
1
+ // Positioning
2
+
3
+ .fixed-top {
4
+ position: fixed;
5
+ top: 0;
6
+ right: 0;
7
+ left: 0;
8
+ z-index: $zindex-fixed;
9
+ }
10
+
11
+ .fixed-bottom {
12
+ position: fixed;
13
+ right: 0;
14
+ bottom: 0;
15
+ left: 0;
16
+ z-index: $zindex-fixed;
17
+ }
18
+
19
+ .sticky-top {
20
+ @supports (position: sticky) {
21
+ position: sticky;
22
+ top: 0;
23
+ z-index: $zindex-sticky;
24
+ }
25
+ }
@@ -0,0 +1,11 @@
1
+ //
2
+ // Screenreaders
3
+ //
4
+
5
+ .sr-only {
6
+ @include sr-only();
7
+ }
8
+
9
+ .sr-only-focusable {
10
+ @include sr-only-focusable();
11
+ }
@@ -0,0 +1,10 @@
1
+ // Width and height
2
+
3
+ @each $prop, $abbrev in (width: w, height: h) {
4
+ @each $size, $length in $sizes {
5
+ .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
6
+ }
7
+ }
8
+
9
+ .mw-100 { max-width: 100% !important; }
10
+ .mh-100 { max-height: 100% !important; }
@@ -0,0 +1,41 @@
1
+ // Margin and Padding
2
+
3
+ @each $breakpoint in map-keys($grid-breakpoints) {
4
+ @include media-breakpoint-up($breakpoint) {
5
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
6
+
7
+ @each $prop, $abbrev in (margin: m, padding: p) {
8
+ @each $size, $length in $spacers {
9
+
10
+ .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
11
+ .#{$abbrev}t#{$infix}-#{$size} { #{$prop}-top: $length !important; }
12
+ .#{$abbrev}r#{$infix}-#{$size} { #{$prop}-right: $length !important; }
13
+ .#{$abbrev}b#{$infix}-#{$size} { #{$prop}-bottom: $length !important; }
14
+ .#{$abbrev}l#{$infix}-#{$size} { #{$prop}-left: $length !important; }
15
+ .#{$abbrev}x#{$infix}-#{$size} {
16
+ #{$prop}-right: $length !important;
17
+ #{$prop}-left: $length !important;
18
+ }
19
+ .#{$abbrev}y#{$infix}-#{$size} {
20
+ #{$prop}-top: $length !important;
21
+ #{$prop}-bottom: $length !important;
22
+ }
23
+ }
24
+ }
25
+
26
+ // Some special margin utils
27
+ .m#{$infix}-auto { margin: auto !important; }
28
+ .mt#{$infix}-auto { margin-top: auto !important; }
29
+ .mr#{$infix}-auto { margin-right: auto !important; }
30
+ .mb#{$infix}-auto { margin-bottom: auto !important; }
31
+ .ml#{$infix}-auto { margin-left: auto !important; }
32
+ .mx#{$infix}-auto {
33
+ margin-right: auto !important;
34
+ margin-left: auto !important;
35
+ }
36
+ .my#{$infix}-auto {
37
+ margin-top: auto !important;
38
+ margin-bottom: auto !important;
39
+ }
40
+ }
41
+ }
@@ -0,0 +1,49 @@
1
+ //
2
+ // Text
3
+ //
4
+
5
+ // Alignment
6
+
7
+ .text-justify { text-align: justify !important; }
8
+ .text-nowrap { white-space: nowrap !important; }
9
+ .text-truncate { @include text-truncate; }
10
+
11
+ // Responsive alignment
12
+
13
+ @each $breakpoint in map-keys($grid-breakpoints) {
14
+ @include media-breakpoint-up($breakpoint) {
15
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
16
+
17
+ .text#{$infix}-left { text-align: left !important; }
18
+ .text#{$infix}-right { text-align: right !important; }
19
+ .text#{$infix}-center { text-align: center !important; }
20
+ }
21
+ }
22
+
23
+ // Transformation
24
+
25
+ .text-lowercase { text-transform: lowercase !important; }
26
+ .text-uppercase { text-transform: uppercase !important; }
27
+ .text-capitalize { text-transform: capitalize !important; }
28
+
29
+ // Weight and italics
30
+
31
+ .font-weight-normal { font-weight: $font-weight-normal; }
32
+ .font-weight-bold { font-weight: $font-weight-bold; }
33
+ .font-italic { font-style: italic; }
34
+
35
+ // Contextual colors
36
+
37
+ .text-white { color: #fff !important; }
38
+
39
+ @each $color, $value in $theme-colors {
40
+ @include text-emphasis-variant('.text-#{$color}', $value);
41
+ }
42
+
43
+ .text-muted { color: $text-muted !important; }
44
+
45
+ // Misc
46
+
47
+ .text-hide {
48
+ @include text-hide();
49
+ }
@@ -0,0 +1,11 @@
1
+ //
2
+ // Visibility utilities
3
+ //
4
+
5
+ .visible {
6
+ @include invisible(visible);
7
+ }
8
+
9
+ .invisible {
10
+ @include invisible(hidden);
11
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 415.6 512"><path d="M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M247.2 137.6c-6.2 1.9-15.3 3.5-27.9 4.6 1.1-56.7 29.9-96.6 88-110.1 9.3 41.6-26.1 94.1-60.1 105.5zm121.3 72.7c6.4-9.4 16.6-19.9 30.6-31.7-22.3-27.6-48.1-44.3-85.1-44.3-35.4 0-65.2 18.2-87 18.2-18.5 0-51.9-16.1-84.5-16.1-69.6 0-106.5 68.1-106.5 139C36 354.2 95.7 480 156.2 480c23.8 0 45.2-18 73.5-18 29.3 0 52.8 17.2 80.3 17.2 46 0 88.6-77.5 102-119.7-46.8-14.3-84.4-90.2-43.5-149.2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" class="st1"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"/></svg>
data/assets/main.scss ADDED
@@ -0,0 +1,10 @@
1
+ ---
2
+ ---
3
+ @import "fonts";
4
+
5
+ @import "bootstrap";
6
+ @import "bootstrap-grid";
7
+ @import "bootstrap-reboot";
8
+
9
+ @import "variables";
10
+ @import "custom";
metadata ADDED
@@ -0,0 +1,183 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vv5cv
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ivan Reyes
8
+ - Itzel Schiaffini
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2017-12-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.12'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.12'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '10.0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '10.0'
42
+ description:
43
+ email:
44
+ - ivanreyesconde@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - LICENSE.txt
50
+ - README.md
51
+ - _includes/colorpicker.html
52
+ - _includes/head.html
53
+ - _includes/icon-at.svg
54
+ - _includes/icon-globe.svg
55
+ - _includes/icon-marker.svg
56
+ - _includes/icon-phone.svg
57
+ - _includes/zone-languages.html
58
+ - _includes/zone-otherskills.html
59
+ - _includes/zone-profile.html
60
+ - _includes/zone-software.html
61
+ - _layouts/default.html
62
+ - _layouts/home.html
63
+ - _layouts/page.html
64
+ - _layouts/post.html
65
+ - _sass/_bootstrap-grid.scss
66
+ - _sass/_bootstrap-reboot.scss
67
+ - _sass/_bootstrap.scss
68
+ - _sass/_custom.scss
69
+ - _sass/_fonts.scss
70
+ - _sass/_variables.scss
71
+ - _sass/bootstrap/_alert.scss
72
+ - _sass/bootstrap/_badge.scss
73
+ - _sass/bootstrap/_breadcrumb.scss
74
+ - _sass/bootstrap/_button-group.scss
75
+ - _sass/bootstrap/_buttons.scss
76
+ - _sass/bootstrap/_card.scss
77
+ - _sass/bootstrap/_carousel.scss
78
+ - _sass/bootstrap/_close.scss
79
+ - _sass/bootstrap/_code.scss
80
+ - _sass/bootstrap/_custom-forms.scss
81
+ - _sass/bootstrap/_dropdown.scss
82
+ - _sass/bootstrap/_forms.scss
83
+ - _sass/bootstrap/_functions.scss
84
+ - _sass/bootstrap/_grid.scss
85
+ - _sass/bootstrap/_images.scss
86
+ - _sass/bootstrap/_input-group.scss
87
+ - _sass/bootstrap/_jumbotron.scss
88
+ - _sass/bootstrap/_list-group.scss
89
+ - _sass/bootstrap/_media.scss
90
+ - _sass/bootstrap/_mixins.scss
91
+ - _sass/bootstrap/_modal.scss
92
+ - _sass/bootstrap/_nav.scss
93
+ - _sass/bootstrap/_navbar.scss
94
+ - _sass/bootstrap/_pagination.scss
95
+ - _sass/bootstrap/_popover.scss
96
+ - _sass/bootstrap/_print.scss
97
+ - _sass/bootstrap/_progress.scss
98
+ - _sass/bootstrap/_reboot.scss
99
+ - _sass/bootstrap/_tables.scss
100
+ - _sass/bootstrap/_tooltip.scss
101
+ - _sass/bootstrap/_transitions.scss
102
+ - _sass/bootstrap/_type.scss
103
+ - _sass/bootstrap/_utilities.scss
104
+ - _sass/bootstrap/_variables.scss
105
+ - _sass/bootstrap/mixins/_alert.scss
106
+ - _sass/bootstrap/mixins/_background-variant.scss
107
+ - _sass/bootstrap/mixins/_badge.scss
108
+ - _sass/bootstrap/mixins/_border-radius.scss
109
+ - _sass/bootstrap/mixins/_box-shadow.scss
110
+ - _sass/bootstrap/mixins/_breakpoints.scss
111
+ - _sass/bootstrap/mixins/_buttons.scss
112
+ - _sass/bootstrap/mixins/_clearfix.scss
113
+ - _sass/bootstrap/mixins/_float.scss
114
+ - _sass/bootstrap/mixins/_forms.scss
115
+ - _sass/bootstrap/mixins/_gradients.scss
116
+ - _sass/bootstrap/mixins/_grid-framework.scss
117
+ - _sass/bootstrap/mixins/_grid.scss
118
+ - _sass/bootstrap/mixins/_hover.scss
119
+ - _sass/bootstrap/mixins/_image.scss
120
+ - _sass/bootstrap/mixins/_list-group.scss
121
+ - _sass/bootstrap/mixins/_lists.scss
122
+ - _sass/bootstrap/mixins/_nav-divider.scss
123
+ - _sass/bootstrap/mixins/_navbar-align.scss
124
+ - _sass/bootstrap/mixins/_pagination.scss
125
+ - _sass/bootstrap/mixins/_reset-text.scss
126
+ - _sass/bootstrap/mixins/_resize.scss
127
+ - _sass/bootstrap/mixins/_screen-reader.scss
128
+ - _sass/bootstrap/mixins/_size.scss
129
+ - _sass/bootstrap/mixins/_table-row.scss
130
+ - _sass/bootstrap/mixins/_text-emphasis.scss
131
+ - _sass/bootstrap/mixins/_text-hide.scss
132
+ - _sass/bootstrap/mixins/_text-truncate.scss
133
+ - _sass/bootstrap/mixins/_transition.scss
134
+ - _sass/bootstrap/mixins/_visibility.scss
135
+ - _sass/bootstrap/utilities/_align.scss
136
+ - _sass/bootstrap/utilities/_background.scss
137
+ - _sass/bootstrap/utilities/_borders.scss
138
+ - _sass/bootstrap/utilities/_clearfix.scss
139
+ - _sass/bootstrap/utilities/_display.scss
140
+ - _sass/bootstrap/utilities/_embed.scss
141
+ - _sass/bootstrap/utilities/_flex.scss
142
+ - _sass/bootstrap/utilities/_float.scss
143
+ - _sass/bootstrap/utilities/_position.scss
144
+ - _sass/bootstrap/utilities/_screenreaders.scss
145
+ - _sass/bootstrap/utilities/_sizing.scss
146
+ - _sass/bootstrap/utilities/_spacing.scss
147
+ - _sass/bootstrap/utilities/_text.scss
148
+ - _sass/bootstrap/utilities/_visibility.scss
149
+ - assets/icons/android.svg
150
+ - assets/icons/angular.svg
151
+ - assets/icons/apple.svg
152
+ - assets/icons/freebsd.svg
153
+ - assets/icons/github.svg
154
+ - assets/icons/line.svg
155
+ - assets/icons/playstation.svg
156
+ - assets/icons/slack.svg
157
+ - assets/main.scss
158
+ homepage: http://github.com/darkade
159
+ licenses:
160
+ - MIT
161
+ metadata: {}
162
+ post_install_message:
163
+ rdoc_options: []
164
+ require_paths:
165
+ - lib
166
+ required_ruby_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: '0'
176
+ requirements: []
177
+ rubyforge_project:
178
+ rubygems_version: 2.6.12
179
+ signing_key:
180
+ specification_version: 4
181
+ summary: Tema para hacer CVs de vectorVcinco. Diseñado por Itzel Schiaffini, implementado
182
+ por Ivan Reyes
183
+ test_files: []