jekyll-theme-digitalebrain 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/_footer.html +68 -0
  3. data/_includes/_head.html +29 -0
  4. data/_includes/_navbar.html +20 -0
  5. data/_layouts/default.html +41 -0
  6. data/_layouts/page.html +39 -0
  7. data/_layouts/post.html +5 -0
  8. data/_sass/bootstrap/_alert.scss +51 -0
  9. data/_sass/bootstrap/_badge.scss +47 -0
  10. data/_sass/bootstrap/_breadcrumb.scss +41 -0
  11. data/_sass/bootstrap/_button-group.scss +172 -0
  12. data/_sass/bootstrap/_buttons.scss +144 -0
  13. data/_sass/bootstrap/_card.scss +301 -0
  14. data/_sass/bootstrap/_carousel.scss +235 -0
  15. data/_sass/bootstrap/_close.scss +34 -0
  16. data/_sass/bootstrap/_code.scss +56 -0
  17. data/_sass/bootstrap/_custom-forms.scss +420 -0
  18. data/_sass/bootstrap/_dropdown.scss +166 -0
  19. data/_sass/bootstrap/_forms.scss +335 -0
  20. data/_sass/bootstrap/_functions.scss +86 -0
  21. data/_sass/bootstrap/_grid.scss +52 -0
  22. data/_sass/bootstrap/_images.scss +42 -0
  23. data/_sass/bootstrap/_input-group.scss +159 -0
  24. data/_sass/bootstrap/_jumbotron.scss +16 -0
  25. data/_sass/bootstrap/_list-group.scss +115 -0
  26. data/_sass/bootstrap/_media.scss +8 -0
  27. data/_sass/bootstrap/_mixins.scss +41 -0
  28. data/_sass/bootstrap/_modal.scss +168 -0
  29. data/_sass/bootstrap/_nav.scss +118 -0
  30. data/_sass/bootstrap/_navbar.scss +299 -0
  31. data/_sass/bootstrap/_pagination.scss +78 -0
  32. data/_sass/bootstrap/_popover.scss +183 -0
  33. data/_sass/bootstrap/_print.scss +124 -0
  34. data/_sass/bootstrap/_progress.scss +34 -0
  35. data/_sass/bootstrap/_reboot.scss +482 -0
  36. data/_sass/bootstrap/_root.scss +19 -0
  37. data/_sass/bootstrap/_tables.scss +188 -0
  38. data/_sass/bootstrap/_tooltip.scss +115 -0
  39. data/_sass/bootstrap/_transitions.scss +22 -0
  40. data/_sass/bootstrap/_type.scss +125 -0
  41. data/_sass/bootstrap/_utilities.scss +15 -0
  42. data/_sass/bootstrap/_variables.scss +930 -0
  43. data/_sass/bootstrap/bootstrap-grid.scss +32 -0
  44. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  45. data/_sass/bootstrap/bootstrap.scss +42 -0
  46. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  47. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  48. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  49. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  50. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  51. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  52. data/_sass/bootstrap/mixins/_buttons.scss +109 -0
  53. data/_sass/bootstrap/mixins/_caret.scss +66 -0
  54. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  55. data/_sass/bootstrap/mixins/_float.scss +11 -0
  56. data/_sass/bootstrap/mixins/_forms.scss +137 -0
  57. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  58. data/_sass/bootstrap/mixins/_grid-framework.scss +67 -0
  59. data/_sass/bootstrap/mixins/_grid.scss +52 -0
  60. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  61. data/_sass/bootstrap/mixins/_image.scss +36 -0
  62. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  63. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  64. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  65. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  66. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  67. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  68. data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
  69. data/_sass/bootstrap/mixins/_size.scss +6 -0
  70. data/_sass/bootstrap/mixins/_table-row.scss +30 -0
  71. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  72. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  73. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  74. data/_sass/bootstrap/mixins/_transition.scss +13 -0
  75. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  76. data/_sass/bootstrap/utilities/_align.scss +8 -0
  77. data/_sass/bootstrap/utilities/_background.scss +19 -0
  78. data/_sass/bootstrap/utilities/_borders.scss +59 -0
  79. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  80. data/_sass/bootstrap/utilities/_display.scss +38 -0
  81. data/_sass/bootstrap/utilities/_embed.scss +52 -0
  82. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  83. data/_sass/bootstrap/utilities/_float.scss +9 -0
  84. data/_sass/bootstrap/utilities/_position.scss +37 -0
  85. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  86. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  87. data/_sass/bootstrap/utilities/_sizing.scss +12 -0
  88. data/_sass/bootstrap/utilities/_spacing.scss +51 -0
  89. data/_sass/bootstrap/utilities/_text.scss +58 -0
  90. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  91. data/_sass/style.scss +1569 -0
  92. metadata +91 -1
@@ -0,0 +1,37 @@
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
+ // stylelint-disable-next-line scss/dollar-variable-default
7
+ $positions: static, relative, absolute, fixed, sticky;
8
+
9
+ @each $position in $positions {
10
+ .position-#{$position} { position: $position !important; }
11
+ }
12
+
13
+ // Shorthand
14
+
15
+ .fixed-top {
16
+ position: fixed;
17
+ top: 0;
18
+ right: 0;
19
+ left: 0;
20
+ z-index: $zindex-fixed;
21
+ }
22
+
23
+ .fixed-bottom {
24
+ position: fixed;
25
+ right: 0;
26
+ bottom: 0;
27
+ left: 0;
28
+ z-index: $zindex-fixed;
29
+ }
30
+
31
+ .sticky-top {
32
+ @supports (position: sticky) {
33
+ position: sticky;
34
+ top: 0;
35
+ z-index: $zindex-sticky;
36
+ }
37
+ }
@@ -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,6 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ .shadow-sm { box-shadow: $box-shadow-sm !important; }
4
+ .shadow { box-shadow: $box-shadow !important; }
5
+ .shadow-lg { box-shadow: $box-shadow-lg !important; }
6
+ .shadow-none { box-shadow: none !important; }
@@ -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,58 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ //
4
+ // Text
5
+ //
6
+
7
+ .text-monospace { font-family: $font-family-monospace; }
8
+
9
+ // Alignment
10
+
11
+ .text-justify { text-align: justify !important; }
12
+ .text-nowrap { white-space: nowrap !important; }
13
+ .text-truncate { @include text-truncate; }
14
+
15
+ // Responsive alignment
16
+
17
+ @each $breakpoint in map-keys($grid-breakpoints) {
18
+ @include media-breakpoint-up($breakpoint) {
19
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
20
+
21
+ .text#{$infix}-left { text-align: left !important; }
22
+ .text#{$infix}-right { text-align: right !important; }
23
+ .text#{$infix}-center { text-align: center !important; }
24
+ }
25
+ }
26
+
27
+ // Transformation
28
+
29
+ .text-lowercase { text-transform: lowercase !important; }
30
+ .text-uppercase { text-transform: uppercase !important; }
31
+ .text-capitalize { text-transform: capitalize !important; }
32
+
33
+ // Weight and italics
34
+
35
+ .font-weight-light { font-weight: $font-weight-light !important; }
36
+ .font-weight-normal { font-weight: $font-weight-normal !important; }
37
+ .font-weight-bold { font-weight: $font-weight-bold !important; }
38
+ .font-italic { font-style: italic !important; }
39
+
40
+ // Contextual colors
41
+
42
+ .text-white { color: $white !important; }
43
+
44
+ @each $color, $value in $theme-colors {
45
+ @include text-emphasis-variant(".text-#{$color}", $value);
46
+ }
47
+
48
+ .text-body { color: $body-color !important; }
49
+ .text-muted { color: $text-muted !important; }
50
+
51
+ .text-black-50 { color: rgba($black, .5) !important; }
52
+ .text-white-50 { color: rgba($white, .5) !important; }
53
+
54
+ // Misc
55
+
56
+ .text-hide {
57
+ @include text-hide();
58
+ }
@@ -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
+ }