vv5-portfolio 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +53 -0
  4. data/_includes/about_abstract.html +14 -0
  5. data/_includes/footer.html +16 -0
  6. data/_includes/footer_social.html +39 -0
  7. data/_includes/head.html +27 -0
  8. data/_includes/header-taglines.html +9 -0
  9. data/_includes/header.html +23 -0
  10. data/_includes/nav.html +26 -0
  11. data/_includes/portfolio.html +26 -0
  12. data/_includes/portfolio_carousel.html +30 -0
  13. data/_includes/portfolio_detail.html +46 -0
  14. data/_includes/portfolio_nav.html +9 -0
  15. data/_includes/spacer.html +5 -0
  16. data/_layouts/default.html +11 -0
  17. data/_layouts/home.html +13 -0
  18. data/_layouts/page.html +7 -0
  19. data/_layouts/post.html +32 -0
  20. data/_sass/_footer.scss +42 -0
  21. data/_sass/_header.scss +32 -0
  22. data/_sass/_portfolio.scss +64 -0
  23. data/_sass/_variables.scss +3 -0
  24. data/_sass/bootstrap/_bootstrap-grid.scss +35 -0
  25. data/_sass/bootstrap/_bootstrap-reboot.scss +12 -0
  26. data/_sass/bootstrap/_bootstrap.scss +42 -0
  27. data/_sass/bootstrap/bootstrap/_alert.scss +51 -0
  28. data/_sass/bootstrap/bootstrap/_badge.scss +47 -0
  29. data/_sass/bootstrap/bootstrap/_breadcrumb.scss +38 -0
  30. data/_sass/bootstrap/bootstrap/_button-group.scss +166 -0
  31. data/_sass/bootstrap/bootstrap/_buttons.scss +147 -0
  32. data/_sass/bootstrap/bootstrap/_card.scss +270 -0
  33. data/_sass/bootstrap/bootstrap/_carousel.scss +191 -0
  34. data/_sass/bootstrap/bootstrap/_close.scss +34 -0
  35. data/_sass/bootstrap/bootstrap/_code.scss +56 -0
  36. data/_sass/bootstrap/bootstrap/_custom-forms.scss +282 -0
  37. data/_sass/bootstrap/bootstrap/_dropdown.scss +131 -0
  38. data/_sass/bootstrap/bootstrap/_forms.scss +333 -0
  39. data/_sass/bootstrap/bootstrap/_functions.scss +86 -0
  40. data/_sass/bootstrap/bootstrap/_grid.scss +52 -0
  41. data/_sass/bootstrap/bootstrap/_images.scss +42 -0
  42. data/_sass/bootstrap/bootstrap/_input-group.scss +156 -0
  43. data/_sass/bootstrap/bootstrap/_jumbotron.scss +16 -0
  44. data/_sass/bootstrap/bootstrap/_list-group.scss +115 -0
  45. data/_sass/bootstrap/bootstrap/_media.scss +8 -0
  46. data/_sass/bootstrap/bootstrap/_mixins.scss +42 -0
  47. data/_sass/bootstrap/bootstrap/_modal.scss +168 -0
  48. data/_sass/bootstrap/bootstrap/_nav.scss +118 -0
  49. data/_sass/bootstrap/bootstrap/_navbar.scss +311 -0
  50. data/_sass/bootstrap/bootstrap/_pagination.scss +72 -0
  51. data/_sass/bootstrap/bootstrap/_popover.scss +183 -0
  52. data/_sass/bootstrap/bootstrap/_print.scss +110 -0
  53. data/_sass/bootstrap/bootstrap/_progress.scss +33 -0
  54. data/_sass/bootstrap/bootstrap/_reboot.scss +505 -0
  55. data/_sass/bootstrap/bootstrap/_root.scss +19 -0
  56. data/_sass/bootstrap/bootstrap/_tables.scss +180 -0
  57. data/_sass/bootstrap/bootstrap/_tooltip.scss +115 -0
  58. data/_sass/bootstrap/bootstrap/_transitions.scss +36 -0
  59. data/_sass/bootstrap/bootstrap/_type.scss +125 -0
  60. data/_sass/bootstrap/bootstrap/_utilities.scss +14 -0
  61. data/_sass/bootstrap/bootstrap/_variables.scss +872 -0
  62. data/_sass/bootstrap/bootstrap/mixins/_alert.scss +13 -0
  63. data/_sass/bootstrap/bootstrap/mixins/_background-variant.scss +21 -0
  64. data/_sass/bootstrap/bootstrap/mixins/_badge.scss +12 -0
  65. data/_sass/bootstrap/bootstrap/mixins/_border-radius.scss +35 -0
  66. data/_sass/bootstrap/bootstrap/mixins/_box-shadow.scss +5 -0
  67. data/_sass/bootstrap/bootstrap/mixins/_breakpoints.scss +121 -0
  68. data/_sass/bootstrap/bootstrap/mixins/_buttons.scss +101 -0
  69. data/_sass/bootstrap/bootstrap/mixins/_caret.scss +65 -0
  70. data/_sass/bootstrap/bootstrap/mixins/_clearfix.scss +7 -0
  71. data/_sass/bootstrap/bootstrap/mixins/_float.scss +11 -0
  72. data/_sass/bootstrap/bootstrap/mixins/_forms.scss +133 -0
  73. data/_sass/bootstrap/bootstrap/mixins/_gradients.scss +45 -0
  74. data/_sass/bootstrap/bootstrap/mixins/_grid-framework.scss +69 -0
  75. data/_sass/bootstrap/bootstrap/mixins/_grid.scss +52 -0
  76. data/_sass/bootstrap/bootstrap/mixins/_hover.scss +61 -0
  77. data/_sass/bootstrap/bootstrap/mixins/_image.scss +36 -0
  78. data/_sass/bootstrap/bootstrap/mixins/_list-group.scss +24 -0
  79. data/_sass/bootstrap/bootstrap/mixins/_lists.scss +7 -0
  80. data/_sass/bootstrap/bootstrap/mixins/_nav-divider.scss +10 -0
  81. data/_sass/bootstrap/bootstrap/mixins/_navbar-align.scss +10 -0
  82. data/_sass/bootstrap/bootstrap/mixins/_pagination.scss +22 -0
  83. data/_sass/bootstrap/bootstrap/mixins/_reset-text.scss +17 -0
  84. data/_sass/bootstrap/bootstrap/mixins/_resize.scss +6 -0
  85. data/_sass/bootstrap/bootstrap/mixins/_screen-reader.scss +35 -0
  86. data/_sass/bootstrap/bootstrap/mixins/_size.scss +6 -0
  87. data/_sass/bootstrap/bootstrap/mixins/_table-row.scss +30 -0
  88. data/_sass/bootstrap/bootstrap/mixins/_text-emphasis.scss +14 -0
  89. data/_sass/bootstrap/bootstrap/mixins/_text-hide.scss +9 -0
  90. data/_sass/bootstrap/bootstrap/mixins/_text-truncate.scss +8 -0
  91. data/_sass/bootstrap/bootstrap/mixins/_transition.scss +9 -0
  92. data/_sass/bootstrap/bootstrap/mixins/_visibility.scss +7 -0
  93. data/_sass/bootstrap/bootstrap/utilities/_align.scss +8 -0
  94. data/_sass/bootstrap/bootstrap/utilities/_background.scss +19 -0
  95. data/_sass/bootstrap/bootstrap/utilities/_borders.scss +54 -0
  96. data/_sass/bootstrap/bootstrap/utilities/_clearfix.scss +3 -0
  97. data/_sass/bootstrap/bootstrap/utilities/_display.scss +56 -0
  98. data/_sass/bootstrap/bootstrap/utilities/_embed.scss +52 -0
  99. data/_sass/bootstrap/bootstrap/utilities/_flex.scss +46 -0
  100. data/_sass/bootstrap/bootstrap/utilities/_float.scss +9 -0
  101. data/_sass/bootstrap/bootstrap/utilities/_position.scss +36 -0
  102. data/_sass/bootstrap/bootstrap/utilities/_screenreaders.scss +11 -0
  103. data/_sass/bootstrap/bootstrap/utilities/_sizing.scss +12 -0
  104. data/_sass/bootstrap/bootstrap/utilities/_spacing.scss +51 -0
  105. data/_sass/bootstrap/bootstrap/utilities/_text.scss +52 -0
  106. data/_sass/bootstrap/bootstrap/utilities/_visibility.scss +11 -0
  107. data/assets/brand/header.jpg +0 -0
  108. data/assets/brand/logo.svg +15 -0
  109. data/assets/brand/profile.jpg +0 -0
  110. data/assets/main.js +0 -0
  111. data/assets/main.scss +28 -0
  112. data/assets/smooth.js +2 -0
  113. metadata +225 -0
@@ -0,0 +1,14 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Typography
4
+
5
+ @mixin text-emphasis-variant($parent, $color) {
6
+ #{$parent} {
7
+ color: $color !important;
8
+ }
9
+ a#{$parent} {
10
+ @include hover-focus {
11
+ color: darken($color, 10%) !important;
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,9 @@
1
+ // CSS image replacement
2
+ @mixin text-hide() {
3
+ // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
4
+ font: 0/0 a;
5
+ color: transparent;
6
+ text-shadow: none;
7
+ background-color: transparent;
8
+ border: 0;
9
+ }
@@ -0,0 +1,8 @@
1
+ // Text truncate
2
+ // Requires inline-block or block for proper styling
3
+
4
+ @mixin text-truncate() {
5
+ overflow: hidden;
6
+ text-overflow: ellipsis;
7
+ white-space: nowrap;
8
+ }
@@ -0,0 +1,9 @@
1
+ @mixin transition($transition...) {
2
+ @if $enable-transitions {
3
+ @if length($transition) == 0 {
4
+ transition: $transition-base;
5
+ } @else {
6
+ transition: $transition;
7
+ }
8
+ }
9
+ }
@@ -0,0 +1,7 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Visibility
4
+
5
+ @mixin invisible($visibility) {
6
+ visibility: $visibility !important;
7
+ }
@@ -0,0 +1,8 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ .align-baseline { vertical-align: baseline !important; } // Browser default
4
+ .align-top { vertical-align: top !important; }
5
+ .align-middle { vertical-align: middle !important; }
6
+ .align-bottom { vertical-align: bottom !important; }
7
+ .align-text-bottom { vertical-align: text-bottom !important; }
8
+ .align-text-top { vertical-align: text-top !important; }
@@ -0,0 +1,19 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ @each $color, $value in $theme-colors {
4
+ @include bg-variant(".bg-#{$color}", $value);
5
+ }
6
+
7
+ @if $enable-gradients {
8
+ @each $color, $value in $theme-colors {
9
+ @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
10
+ }
11
+ }
12
+
13
+ .bg-white {
14
+ background-color: $white !important;
15
+ }
16
+
17
+ .bg-transparent {
18
+ background-color: transparent !important;
19
+ }
@@ -0,0 +1,54 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ //
4
+ // Border
5
+ //
6
+
7
+ .border { border: $border-width solid $border-color !important; }
8
+ .border-0 { border: 0 !important; }
9
+ .border-top-0 { border-top: 0 !important; }
10
+ .border-right-0 { border-right: 0 !important; }
11
+ .border-bottom-0 { border-bottom: 0 !important; }
12
+ .border-left-0 { border-left: 0 !important; }
13
+
14
+ @each $color, $value in $theme-colors {
15
+ .border-#{$color} {
16
+ border-color: $value !important;
17
+ }
18
+ }
19
+
20
+ .border-white {
21
+ border-color: $white !important;
22
+ }
23
+
24
+ //
25
+ // Border-radius
26
+ //
27
+
28
+ .rounded {
29
+ border-radius: $border-radius !important;
30
+ }
31
+ .rounded-top {
32
+ border-top-left-radius: $border-radius !important;
33
+ border-top-right-radius: $border-radius !important;
34
+ }
35
+ .rounded-right {
36
+ border-top-right-radius: $border-radius !important;
37
+ border-bottom-right-radius: $border-radius !important;
38
+ }
39
+ .rounded-bottom {
40
+ border-bottom-right-radius: $border-radius !important;
41
+ border-bottom-left-radius: $border-radius !important;
42
+ }
43
+ .rounded-left {
44
+ border-top-left-radius: $border-radius !important;
45
+ border-bottom-left-radius: $border-radius !important;
46
+ }
47
+
48
+ .rounded-circle {
49
+ border-radius: 50% !important;
50
+ }
51
+
52
+ .rounded-0 {
53
+ border-radius: 0 !important;
54
+ }
@@ -0,0 +1,3 @@
1
+ .clearfix {
2
+ @include clearfix();
3
+ }
@@ -0,0 +1,56 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ //
4
+ // Utilities for common `display` values
5
+ //
6
+
7
+ @each $breakpoint in map-keys($grid-breakpoints) {
8
+ @include media-breakpoint-up($breakpoint) {
9
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
10
+
11
+ .d#{$infix}-none { display: none !important; }
12
+ .d#{$infix}-inline { display: inline !important; }
13
+ .d#{$infix}-inline-block { display: inline-block !important; }
14
+ .d#{$infix}-block { display: block !important; }
15
+ .d#{$infix}-table { display: table !important; }
16
+ .d#{$infix}-table-row { display: table-row !important; }
17
+ .d#{$infix}-table-cell { display: table-cell !important; }
18
+ .d#{$infix}-flex { display: flex !important; }
19
+ .d#{$infix}-inline-flex { display: inline-flex !important; }
20
+ }
21
+ }
22
+
23
+
24
+ //
25
+ // Utilities for toggling `display` in print
26
+ //
27
+
28
+ .d-print-block {
29
+ display: none !important;
30
+
31
+ @media print {
32
+ display: block !important;
33
+ }
34
+ }
35
+
36
+ .d-print-inline {
37
+ display: none !important;
38
+
39
+ @media print {
40
+ display: inline !important;
41
+ }
42
+ }
43
+
44
+ .d-print-inline-block {
45
+ display: none !important;
46
+
47
+ @media print {
48
+ display: inline-block !important;
49
+ }
50
+ }
51
+
52
+ .d-print-none {
53
+ @media print {
54
+ display: none !important;
55
+ }
56
+ }
@@ -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,46 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Flex variation
4
+ //
5
+ // Custom styles for additional flex alignment options.
6
+
7
+ @each $breakpoint in map-keys($grid-breakpoints) {
8
+ @include media-breakpoint-up($breakpoint) {
9
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
10
+
11
+ .flex#{$infix}-row { flex-direction: row !important; }
12
+ .flex#{$infix}-column { flex-direction: column !important; }
13
+ .flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }
14
+ .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }
15
+
16
+ .flex#{$infix}-wrap { flex-wrap: wrap !important; }
17
+ .flex#{$infix}-nowrap { flex-wrap: nowrap !important; }
18
+ .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }
19
+
20
+ .justify-content#{$infix}-start { justify-content: flex-start !important; }
21
+ .justify-content#{$infix}-end { justify-content: flex-end !important; }
22
+ .justify-content#{$infix}-center { justify-content: center !important; }
23
+ .justify-content#{$infix}-between { justify-content: space-between !important; }
24
+ .justify-content#{$infix}-around { justify-content: space-around !important; }
25
+
26
+ .align-items#{$infix}-start { align-items: flex-start !important; }
27
+ .align-items#{$infix}-end { align-items: flex-end !important; }
28
+ .align-items#{$infix}-center { align-items: center !important; }
29
+ .align-items#{$infix}-baseline { align-items: baseline !important; }
30
+ .align-items#{$infix}-stretch { align-items: stretch !important; }
31
+
32
+ .align-content#{$infix}-start { align-content: flex-start !important; }
33
+ .align-content#{$infix}-end { align-content: flex-end !important; }
34
+ .align-content#{$infix}-center { align-content: center !important; }
35
+ .align-content#{$infix}-between { align-content: space-between !important; }
36
+ .align-content#{$infix}-around { align-content: space-around !important; }
37
+ .align-content#{$infix}-stretch { align-content: stretch !important; }
38
+
39
+ .align-self#{$infix}-auto { align-self: auto !important; }
40
+ .align-self#{$infix}-start { align-self: flex-start !important; }
41
+ .align-self#{$infix}-end { align-self: flex-end !important; }
42
+ .align-self#{$infix}-center { align-self: center !important; }
43
+ .align-self#{$infix}-baseline { align-self: baseline !important; }
44
+ .align-self#{$infix}-stretch { align-self: stretch !important; }
45
+ }
46
+ }
@@ -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,36 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Common values
4
+
5
+ // Sass list not in variables since it's not intended for customization.
6
+ $positions: static, relative, absolute, fixed, sticky;
7
+
8
+ @each $position in $positions {
9
+ .position-#{$position} { position: $position !important; }
10
+ }
11
+
12
+ // Shorthand
13
+
14
+ .fixed-top {
15
+ position: fixed;
16
+ top: 0;
17
+ right: 0;
18
+ left: 0;
19
+ z-index: $zindex-fixed;
20
+ }
21
+
22
+ .fixed-bottom {
23
+ position: fixed;
24
+ right: 0;
25
+ bottom: 0;
26
+ left: 0;
27
+ z-index: $zindex-fixed;
28
+ }
29
+
30
+ .sticky-top {
31
+ @supports (position: sticky) {
32
+ position: sticky;
33
+ top: 0;
34
+ z-index: $zindex-sticky;
35
+ }
36
+ }
@@ -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,12 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Width and height
4
+
5
+ @each $prop, $abbrev in (width: w, height: h) {
6
+ @each $size, $length in $sizes {
7
+ .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
8
+ }
9
+ }
10
+
11
+ .mw-100 { max-width: 100% !important; }
12
+ .mh-100 { max-height: 100% !important; }
@@ -0,0 +1,51 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Margin and Padding
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 $spacers {
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
+ // Some special margin utils
33
+ .m#{$infix}-auto { margin: auto !important; }
34
+ .mt#{$infix}-auto,
35
+ .my#{$infix}-auto {
36
+ margin-top: auto !important;
37
+ }
38
+ .mr#{$infix}-auto,
39
+ .mx#{$infix}-auto {
40
+ margin-right: auto !important;
41
+ }
42
+ .mb#{$infix}-auto,
43
+ .my#{$infix}-auto {
44
+ margin-bottom: auto !important;
45
+ }
46
+ .ml#{$infix}-auto,
47
+ .mx#{$infix}-auto {
48
+ margin-left: auto !important;
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,52 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ //
4
+ // Text
5
+ //
6
+
7
+ // Alignment
8
+
9
+ .text-justify { text-align: justify !important; }
10
+ .text-nowrap { white-space: nowrap !important; }
11
+ .text-truncate { @include text-truncate; }
12
+
13
+ // Responsive alignment
14
+
15
+ @each $breakpoint in map-keys($grid-breakpoints) {
16
+ @include media-breakpoint-up($breakpoint) {
17
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
18
+
19
+ .text#{$infix}-left { text-align: left !important; }
20
+ .text#{$infix}-right { text-align: right !important; }
21
+ .text#{$infix}-center { text-align: center !important; }
22
+ }
23
+ }
24
+
25
+ // Transformation
26
+
27
+ .text-lowercase { text-transform: lowercase !important; }
28
+ .text-uppercase { text-transform: uppercase !important; }
29
+ .text-capitalize { text-transform: capitalize !important; }
30
+
31
+ // Weight and italics
32
+
33
+ .font-weight-light { font-weight: $font-weight-light !important; }
34
+ .font-weight-normal { font-weight: $font-weight-normal !important; }
35
+ .font-weight-bold { font-weight: $font-weight-bold !important; }
36
+ .font-italic { font-style: italic !important; }
37
+
38
+ // Contextual colors
39
+
40
+ .text-white { color: #fff !important; }
41
+
42
+ @each $color, $value in $theme-colors {
43
+ @include text-emphasis-variant(".text-#{$color}", $value);
44
+ }
45
+
46
+ .text-muted { color: $text-muted !important; }
47
+
48
+ // Misc
49
+
50
+ .text-hide {
51
+ @include text-hide();
52
+ }