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,168 @@
1
+ //
2
+ // Basic Bootstrap table
3
+ //
4
+
5
+ .table {
6
+ width: 100%;
7
+ max-width: 100%;
8
+ margin-bottom: $spacer;
9
+ background-color: $table-bg; // Reset for nesting within parents with `background-color`.
10
+
11
+ th,
12
+ td {
13
+ padding: $table-cell-padding;
14
+ vertical-align: top;
15
+ border-top: $table-border-width solid $table-border-color;
16
+ }
17
+
18
+ thead th {
19
+ vertical-align: bottom;
20
+ border-bottom: (2 * $table-border-width) solid $table-border-color;
21
+ }
22
+
23
+ tbody + tbody {
24
+ border-top: (2 * $table-border-width) solid $table-border-color;
25
+ }
26
+
27
+ .table {
28
+ background-color: $body-bg;
29
+ }
30
+ }
31
+
32
+
33
+ //
34
+ // Condensed table w/ half padding
35
+ //
36
+
37
+ .table-sm {
38
+ th,
39
+ td {
40
+ padding: $table-cell-padding-sm;
41
+ }
42
+ }
43
+
44
+
45
+ // Bordered version
46
+ //
47
+ // Add borders all around the table and between all the columns.
48
+
49
+ .table-bordered {
50
+ border: $table-border-width solid $table-border-color;
51
+
52
+ th,
53
+ td {
54
+ border: $table-border-width solid $table-border-color;
55
+ }
56
+
57
+ thead {
58
+ th,
59
+ td {
60
+ border-bottom-width: (2 * $table-border-width);
61
+ }
62
+ }
63
+ }
64
+
65
+
66
+ // Zebra-striping
67
+ //
68
+ // Default zebra-stripe styles (alternating gray and transparent backgrounds)
69
+
70
+ .table-striped {
71
+ tbody tr:nth-of-type(odd) {
72
+ background-color: $table-accent-bg;
73
+ }
74
+ }
75
+
76
+
77
+ // Hover effect
78
+ //
79
+ // Placed here since it has to come after the potential zebra striping
80
+
81
+ .table-hover {
82
+ tbody tr {
83
+ @include hover {
84
+ background-color: $table-hover-bg;
85
+ }
86
+ }
87
+ }
88
+
89
+
90
+ // Table backgrounds
91
+ //
92
+ // Exact selectors below required to override `.table-striped` and prevent
93
+ // inheritance to nested tables.
94
+
95
+ @each $color, $value in $theme-colors {
96
+ @include table-row-variant($color, theme-color-level($color, -9));
97
+ }
98
+
99
+ @include table-row-variant(active, $table-active-bg);
100
+
101
+
102
+ // Inverse styles
103
+ //
104
+ // Same table markup, but inverted color scheme: dark background and light text.
105
+
106
+ .thead-inverse {
107
+ th {
108
+ color: $table-inverse-color;
109
+ background-color: $table-inverse-bg;
110
+ }
111
+ }
112
+
113
+ .thead-default {
114
+ th {
115
+ color: $table-head-color;
116
+ background-color: $table-head-bg;
117
+ }
118
+ }
119
+
120
+ .table-inverse {
121
+ color: $table-inverse-color;
122
+ background-color: $table-inverse-bg;
123
+
124
+ th,
125
+ td,
126
+ thead th {
127
+ border-color: $table-inverse-border-color;
128
+ }
129
+
130
+ &.table-bordered {
131
+ border: 0;
132
+ }
133
+
134
+ &.table-striped {
135
+ tbody tr:nth-of-type(odd) {
136
+ background-color: $table-inverse-accent-bg;
137
+ }
138
+ }
139
+
140
+ &.table-hover {
141
+ tbody tr {
142
+ @include hover {
143
+ background-color: $table-inverse-hover-bg;
144
+ }
145
+ }
146
+ }
147
+ }
148
+
149
+
150
+ // Responsive tables
151
+ //
152
+ // Add `.table-responsive` to `.table`s and we'll make them mobile friendly by
153
+ // enabling horizontal scrolling. Only applies <768px. Everything above that
154
+ // will display normally.
155
+
156
+ .table-responsive {
157
+ @include media-breakpoint-down(md) {
158
+ display: block;
159
+ width: 100%;
160
+ overflow-x: auto;
161
+ -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
162
+
163
+ // Prevent double border on horizontal scroll due to use of `display: block;`
164
+ &.table-bordered {
165
+ border: 0;
166
+ }
167
+ }
168
+ }
@@ -0,0 +1,107 @@
1
+ // Base class
2
+ .tooltip {
3
+ position: absolute;
4
+ z-index: $zindex-tooltip;
5
+ display: block;
6
+ margin: $tooltip-margin;
7
+ // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
8
+ // So reset our font and text properties to avoid inheriting weird values.
9
+ @include reset-text();
10
+ font-size: $font-size-sm;
11
+ // Allow breaking very long words so they don't overflow the tooltip's bounds
12
+ word-wrap: break-word;
13
+ opacity: 0;
14
+
15
+ &.show { opacity: $tooltip-opacity; }
16
+
17
+ .arrow {
18
+ position: absolute;
19
+ display: block;
20
+ width: $tooltip-arrow-width;
21
+ height: $tooltip-arrow-height;
22
+ }
23
+
24
+ &.bs-tooltip-top {
25
+ padding: $tooltip-arrow-width 0;
26
+ .arrow {
27
+ bottom: 0;
28
+ }
29
+
30
+ .arrow::before {
31
+ margin-left: -($tooltip-arrow-width - 2);
32
+ content: "";
33
+ border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
34
+ border-top-color: $tooltip-arrow-color;
35
+ }
36
+ }
37
+ &.bs-tooltip-right {
38
+ padding: 0 $tooltip-arrow-width;
39
+ .arrow {
40
+ left: 0;
41
+ }
42
+
43
+ .arrow::before {
44
+ margin-top: -($tooltip-arrow-width - 2);
45
+ content: "";
46
+ border-width: $tooltip-arrow-width $tooltip-arrow-width $tooltip-arrow-width 0;
47
+ border-right-color: $tooltip-arrow-color;
48
+ }
49
+ }
50
+ &.bs-tooltip-bottom {
51
+ padding: $tooltip-arrow-width 0;
52
+ .arrow {
53
+ top: 0;
54
+ }
55
+
56
+ .arrow::before {
57
+ margin-left: -($tooltip-arrow-width - 2);
58
+ content: "";
59
+ border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
60
+ border-bottom-color: $tooltip-arrow-color;
61
+ }
62
+ }
63
+ &.bs-tooltip-left {
64
+ padding: 0 $tooltip-arrow-width;
65
+ .arrow {
66
+ right: 0;
67
+ }
68
+
69
+ .arrow::before {
70
+ right: 0;
71
+ margin-top: -($tooltip-arrow-width - 2);
72
+ content: "";
73
+ border-width: $tooltip-arrow-width 0 $tooltip-arrow-width $tooltip-arrow-width;
74
+ border-left-color: $tooltip-arrow-color;
75
+ }
76
+ }
77
+ &.bs-tooltip-auto {
78
+ &[x-placement^="top"] {
79
+ @extend .bs-tooltip-top;
80
+ }
81
+ &[x-placement^="right"] {
82
+ @extend .bs-tooltip-right;
83
+ }
84
+ &[x-placement^="bottom"] {
85
+ @extend .bs-tooltip-bottom;
86
+ }
87
+ &[x-placement^="left"] {
88
+ @extend .bs-tooltip-left;
89
+ }
90
+ }
91
+
92
+ .arrow::before {
93
+ position: absolute;
94
+ border-color: transparent;
95
+ border-style: solid;
96
+ }
97
+ }
98
+
99
+ // Wrapper for the tooltip content
100
+ .tooltip-inner {
101
+ max-width: $tooltip-max-width;
102
+ padding: $tooltip-padding-y $tooltip-padding-x;
103
+ color: $tooltip-color;
104
+ text-align: center;
105
+ background-color: $tooltip-bg;
106
+ @include border-radius($border-radius);
107
+ }
@@ -0,0 +1,34 @@
1
+ .fade {
2
+ opacity: 0;
3
+ @include transition($transition-fade);
4
+
5
+ &.show {
6
+ opacity: 1;
7
+ }
8
+ }
9
+
10
+ .collapse {
11
+ display: none;
12
+ &.show {
13
+ display: block;
14
+ }
15
+ }
16
+
17
+ tr {
18
+ &.collapse.show {
19
+ display: table-row;
20
+ }
21
+ }
22
+
23
+ tbody {
24
+ &.collapse.show {
25
+ display: table-row-group;
26
+ }
27
+ }
28
+
29
+ .collapsing {
30
+ position: relative;
31
+ height: 0;
32
+ overflow: hidden;
33
+ @include transition($transition-collapse);
34
+ }
@@ -0,0 +1,123 @@
1
+ //
2
+ // Headings
3
+ //
4
+
5
+ h1, h2, h3, h4, h5, h6,
6
+ .h1, .h2, .h3, .h4, .h5, .h6 {
7
+ margin-bottom: $headings-margin-bottom;
8
+ font-family: $headings-font-family;
9
+ font-weight: $headings-font-weight;
10
+ line-height: $headings-line-height;
11
+ color: $headings-color;
12
+ }
13
+
14
+ h1, .h1 { font-size: $h1-font-size; }
15
+ h2, .h2 { font-size: $h2-font-size; }
16
+ h3, .h3 { font-size: $h3-font-size; }
17
+ h4, .h4 { font-size: $h4-font-size; }
18
+ h5, .h5 { font-size: $h5-font-size; }
19
+ h6, .h6 { font-size: $h6-font-size; }
20
+
21
+ .lead {
22
+ font-size: $lead-font-size;
23
+ font-weight: $lead-font-weight;
24
+ }
25
+
26
+ // Type display classes
27
+ .display-1 {
28
+ font-size: $display1-size;
29
+ font-weight: $display1-weight;
30
+ line-height: $display-line-height;
31
+ }
32
+ .display-2 {
33
+ font-size: $display2-size;
34
+ font-weight: $display2-weight;
35
+ line-height: $display-line-height;
36
+ }
37
+ .display-3 {
38
+ font-size: $display3-size;
39
+ font-weight: $display3-weight;
40
+ line-height: $display-line-height;
41
+ }
42
+ .display-4 {
43
+ font-size: $display4-size;
44
+ font-weight: $display4-weight;
45
+ line-height: $display-line-height;
46
+ }
47
+
48
+
49
+ //
50
+ // Horizontal rules
51
+ //
52
+
53
+ hr {
54
+ margin-top: 1rem;
55
+ margin-bottom: 1rem;
56
+ border: 0;
57
+ border-top: $hr-border-width solid $hr-border-color;
58
+ }
59
+
60
+
61
+ //
62
+ // Emphasis
63
+ //
64
+
65
+ small,
66
+ .small {
67
+ font-size: $small-font-size;
68
+ font-weight: $font-weight-normal;
69
+ }
70
+
71
+ mark,
72
+ .mark {
73
+ padding: $mark-padding;
74
+ background-color: $mark-bg;
75
+ }
76
+
77
+
78
+ //
79
+ // Lists
80
+ //
81
+
82
+ .list-unstyled {
83
+ @include list-unstyled;
84
+ }
85
+
86
+ // Inline turns list items into inline-block
87
+ .list-inline {
88
+ @include list-unstyled;
89
+ }
90
+ .list-inline-item {
91
+ display: inline-block;
92
+
93
+ &:not(:last-child) {
94
+ margin-right: $list-inline-padding;
95
+ }
96
+ }
97
+
98
+
99
+ //
100
+ // Misc
101
+ //
102
+
103
+ // Builds on `abbr`
104
+ .initialism {
105
+ font-size: 90%;
106
+ text-transform: uppercase;
107
+ }
108
+
109
+ // Blockquotes
110
+ .blockquote {
111
+ margin-bottom: $spacer;
112
+ font-size: $blockquote-font-size;
113
+ }
114
+
115
+ .blockquote-footer {
116
+ display: block;
117
+ font-size: 80%; // back to default font-size
118
+ color: $blockquote-small-color;
119
+
120
+ &::before {
121
+ content: "\2014 \00A0"; // em dash, nbsp
122
+ }
123
+ }
@@ -0,0 +1,14 @@
1
+ @import "utilities/align";
2
+ @import "utilities/background";
3
+ @import "utilities/borders";
4
+ @import "utilities/clearfix";
5
+ @import "utilities/display";
6
+ @import "utilities/embed";
7
+ @import "utilities/flex";
8
+ @import "utilities/float";
9
+ @import "utilities/position";
10
+ @import "utilities/screenreaders";
11
+ @import "utilities/sizing";
12
+ @import "utilities/spacing";
13
+ @import "utilities/text";
14
+ @import "utilities/visibility";