jekyll-bootstrap 4.0.0.pre.beta.2.1
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +46 -0
- data/_includes/footer.html +16 -0
- data/_includes/head.html +16 -0
- data/_includes/header.html +24 -0
- data/_layouts/default.html +9 -0
- data/_layouts/home.html +71 -0
- data/_layouts/page.html +11 -0
- data/_layouts/post.html +24 -0
- data/_sass/_alert.scss +49 -0
- data/_sass/_badge.scss +47 -0
- data/_sass/_breadcrumb.scss +38 -0
- data/_sass/_button-group.scss +207 -0
- data/_sass/_buttons.scss +136 -0
- data/_sass/_card.scss +259 -0
- data/_sass/_carousel.scss +191 -0
- data/_sass/_close.scss +29 -0
- data/_sass/_code.scss +64 -0
- data/_sass/_custom-forms.scss +257 -0
- data/_sass/_dropdown.scss +103 -0
- data/_sass/_forms.scss +358 -0
- data/_sass/_functions.scss +86 -0
- data/_sass/_grid.scss +52 -0
- data/_sass/_images.scss +43 -0
- data/_sass/_input-group.scss +186 -0
- data/_sass/_jumbotron.scss +16 -0
- data/_sass/_list-group.scss +114 -0
- data/_sass/_media.scss +8 -0
- data/_sass/_mixins.scss +42 -0
- data/_sass/_modal.scss +153 -0
- data/_sass/_nav.scss +118 -0
- data/_sass/_navbar.scss +306 -0
- data/_sass/_pagination.scss +64 -0
- data/_sass/_popover.scss +194 -0
- data/_sass/_print.scss +110 -0
- data/_sass/_progress.scss +30 -0
- data/_sass/_reboot.scss +504 -0
- data/_sass/_root.scss +19 -0
- data/_sass/_tables.scss +180 -0
- data/_sass/_tooltip.scss +107 -0
- data/_sass/_transitions.scss +36 -0
- data/_sass/_type.scss +125 -0
- data/_sass/_utilities.scss +14 -0
- data/_sass/_variables.scss +828 -0
- data/_sass/bootstrap-grid.scss +35 -0
- data/_sass/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap.scss +42 -0
- data/_sass/mixins/_alert.scss +13 -0
- data/_sass/mixins/_background-variant.scss +20 -0
- data/_sass/mixins/_badge.scss +12 -0
- data/_sass/mixins/_border-radius.scss +35 -0
- data/_sass/mixins/_box-shadow.scss +5 -0
- data/_sass/mixins/_breakpoints.scss +119 -0
- data/_sass/mixins/_buttons.scss +94 -0
- data/_sass/mixins/_caret.scss +35 -0
- data/_sass/mixins/_clearfix.scss +7 -0
- data/_sass/mixins/_float.scss +11 -0
- data/_sass/mixins/_forms.scss +108 -0
- data/_sass/mixins/_gradients.scss +45 -0
- data/_sass/mixins/_grid-framework.scss +69 -0
- data/_sass/mixins/_grid.scss +52 -0
- data/_sass/mixins/_hover.scss +61 -0
- data/_sass/mixins/_image.scss +36 -0
- data/_sass/mixins/_list-group.scss +24 -0
- data/_sass/mixins/_lists.scss +7 -0
- data/_sass/mixins/_nav-divider.scss +10 -0
- data/_sass/mixins/_navbar-align.scss +10 -0
- data/_sass/mixins/_pagination.scss +22 -0
- data/_sass/mixins/_reset-text.scss +17 -0
- data/_sass/mixins/_resize.scss +6 -0
- data/_sass/mixins/_screen-reader.scss +35 -0
- data/_sass/mixins/_size.scss +6 -0
- data/_sass/mixins/_table-row.scss +30 -0
- data/_sass/mixins/_text-emphasis.scss +14 -0
- data/_sass/mixins/_text-hide.scss +8 -0
- data/_sass/mixins/_text-truncate.scss +8 -0
- data/_sass/mixins/_transition.scss +9 -0
- data/_sass/mixins/_visibility.scss +7 -0
- data/_sass/syntax_highlight.scss +70 -0
- data/_sass/utilities/_align.scss +8 -0
- data/_sass/utilities/_background.scss +19 -0
- data/_sass/utilities/_borders.scss +54 -0
- data/_sass/utilities/_clearfix.scss +3 -0
- data/_sass/utilities/_display.scss +56 -0
- data/_sass/utilities/_embed.scss +52 -0
- data/_sass/utilities/_flex.scss +46 -0
- data/_sass/utilities/_float.scss +9 -0
- data/_sass/utilities/_position.scss +36 -0
- data/_sass/utilities/_screenreaders.scss +11 -0
- data/_sass/utilities/_sizing.scss +12 -0
- data/_sass/utilities/_spacing.scss +51 -0
- data/_sass/utilities/_text.scss +52 -0
- data/_sass/utilities/_visibility.scss +11 -0
- data/assets/css/main.scss +15 -0
- metadata +195 -0
@@ -0,0 +1,108 @@
|
|
1
|
+
// Form control focus state
|
2
|
+
//
|
3
|
+
// Generate a customized focus state and for any input with the specified color,
|
4
|
+
// which defaults to the `$input-focus-border-color` variable.
|
5
|
+
//
|
6
|
+
// We highly encourage you to not customize the default value, but instead use
|
7
|
+
// this to tweak colors on an as-needed basis. This aesthetic change is based on
|
8
|
+
// WebKit's default styles, but applicable to a wider range of browsers. Its
|
9
|
+
// usability and accessibility should be taken into account with any change.
|
10
|
+
//
|
11
|
+
// Example usage: change the default blue border and shadow to white for better
|
12
|
+
// contrast against a dark gray background.
|
13
|
+
@mixin form-control-focus() {
|
14
|
+
&:focus {
|
15
|
+
color: $input-focus-color;
|
16
|
+
background-color: $input-focus-bg;
|
17
|
+
border-color: $input-focus-border-color;
|
18
|
+
outline: none;
|
19
|
+
// Avoid using mixin so we can pass custom focus shadow properly
|
20
|
+
@if $enable-shadows {
|
21
|
+
box-shadow: $input-box-shadow, $input-btn-focus-box-shadow;
|
22
|
+
} @else {
|
23
|
+
box-shadow: $input-btn-focus-box-shadow;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
|
29
|
+
@mixin form-validation-state($state, $color) {
|
30
|
+
|
31
|
+
.#{$state}-feedback {
|
32
|
+
display: none;
|
33
|
+
margin-top: .25rem;
|
34
|
+
font-size: .875rem;
|
35
|
+
color: $color;
|
36
|
+
}
|
37
|
+
|
38
|
+
.#{$state}-tooltip {
|
39
|
+
position: absolute;
|
40
|
+
top: 100%;
|
41
|
+
z-index: 5;
|
42
|
+
display: none;
|
43
|
+
width: 250px;
|
44
|
+
padding: .5rem;
|
45
|
+
margin-top: .1rem;
|
46
|
+
font-size: .875rem;
|
47
|
+
line-height: 1;
|
48
|
+
color: #fff;
|
49
|
+
background-color: rgba($color,.8);
|
50
|
+
border-radius: .2rem;
|
51
|
+
}
|
52
|
+
|
53
|
+
.form-control,
|
54
|
+
.custom-select {
|
55
|
+
.was-validated &:#{$state},
|
56
|
+
&.is-#{$state} {
|
57
|
+
border-color: $color;
|
58
|
+
|
59
|
+
&:focus {
|
60
|
+
box-shadow: 0 0 0 .2rem rgba($color,.25);
|
61
|
+
}
|
62
|
+
|
63
|
+
~ .#{$state}-feedback,
|
64
|
+
~ .#{$state}-tooltip {
|
65
|
+
display: block;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
|
71
|
+
// TODO: redo check markup lol crap
|
72
|
+
.form-check-input {
|
73
|
+
.was-validated &:#{$state},
|
74
|
+
&.is-#{$state} {
|
75
|
+
+ .form-check-label {
|
76
|
+
color: $color;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
// custom radios and checks
|
82
|
+
.custom-control-input {
|
83
|
+
.was-validated &:#{$state},
|
84
|
+
&.is-#{$state} {
|
85
|
+
~ .custom-control-indicator {
|
86
|
+
background-color: rgba($color, .25);
|
87
|
+
}
|
88
|
+
~ .custom-control-description {
|
89
|
+
color: $color;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
// custom file
|
95
|
+
.custom-file-input {
|
96
|
+
.was-validated &:#{$state},
|
97
|
+
&.is-#{$state} {
|
98
|
+
~ .custom-file-control {
|
99
|
+
border-color: $color;
|
100
|
+
|
101
|
+
&::before { border-color: inherit; }
|
102
|
+
}
|
103
|
+
&:focus {
|
104
|
+
box-shadow: 0 0 0 .2rem rgba($color,.25);
|
105
|
+
}
|
106
|
+
}
|
107
|
+
}
|
108
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
// Gradients
|
2
|
+
|
3
|
+
@mixin gradient-bg($color) {
|
4
|
+
@if $enable-gradients {
|
5
|
+
background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x;
|
6
|
+
} @else {
|
7
|
+
background-color: $color;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
// Horizontal gradient, from left to right
|
12
|
+
//
|
13
|
+
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
14
|
+
@mixin gradient-x($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
|
15
|
+
background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
|
16
|
+
background-repeat: repeat-x;
|
17
|
+
}
|
18
|
+
|
19
|
+
// Vertical gradient, from top to bottom
|
20
|
+
//
|
21
|
+
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
22
|
+
@mixin gradient-y($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
|
23
|
+
background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
|
24
|
+
background-repeat: repeat-x;
|
25
|
+
}
|
26
|
+
|
27
|
+
@mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) {
|
28
|
+
background-image: linear-gradient($deg, $start-color, $end-color);
|
29
|
+
background-repeat: repeat-x;
|
30
|
+
}
|
31
|
+
@mixin gradient-x-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
|
32
|
+
background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
|
33
|
+
background-repeat: no-repeat;
|
34
|
+
}
|
35
|
+
@mixin gradient-y-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
|
36
|
+
background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
|
37
|
+
background-repeat: no-repeat;
|
38
|
+
}
|
39
|
+
@mixin gradient-radial($inner-color: #555, $outer-color: #333) {
|
40
|
+
background-image: radial-gradient(circle, $inner-color, $outer-color);
|
41
|
+
background-repeat: no-repeat;
|
42
|
+
}
|
43
|
+
@mixin gradient-striped($color: rgba(255,255,255,.15), $angle: 45deg) {
|
44
|
+
background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
|
45
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
// Framework grid generation
|
2
|
+
//
|
3
|
+
// Used only by Bootstrap to generate the correct number of grid classes given
|
4
|
+
// any value of `$grid-columns`.
|
5
|
+
|
6
|
+
@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
|
7
|
+
// Common properties for all breakpoints
|
8
|
+
%grid-column {
|
9
|
+
position: relative;
|
10
|
+
width: 100%;
|
11
|
+
min-height: 1px; // Prevent columns from collapsing when empty
|
12
|
+
padding-right: ($gutter / 2);
|
13
|
+
padding-left: ($gutter / 2);
|
14
|
+
}
|
15
|
+
|
16
|
+
@each $breakpoint in map-keys($breakpoints) {
|
17
|
+
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
18
|
+
|
19
|
+
// Allow columns to stretch full width below their breakpoints
|
20
|
+
@for $i from 1 through $columns {
|
21
|
+
.col#{$infix}-#{$i} {
|
22
|
+
@extend %grid-column;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
.col#{$infix},
|
26
|
+
.col#{$infix}-auto {
|
27
|
+
@extend %grid-column;
|
28
|
+
}
|
29
|
+
|
30
|
+
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
31
|
+
// Provide basic `.col-{bp}` classes for equal-width flexbox columns
|
32
|
+
.col#{$infix} {
|
33
|
+
flex-basis: 0;
|
34
|
+
flex-grow: 1;
|
35
|
+
max-width: 100%;
|
36
|
+
}
|
37
|
+
.col#{$infix}-auto {
|
38
|
+
flex: 0 0 auto;
|
39
|
+
width: auto;
|
40
|
+
max-width: none; // Reset earlier grid tiers
|
41
|
+
}
|
42
|
+
|
43
|
+
@for $i from 1 through $columns {
|
44
|
+
.col#{$infix}-#{$i} {
|
45
|
+
@include make-col($i, $columns);
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
.order#{$infix}-first {
|
50
|
+
order: -1;
|
51
|
+
}
|
52
|
+
|
53
|
+
@for $i from 1 through $columns {
|
54
|
+
.order#{$infix}-#{$i} {
|
55
|
+
order: $i;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
// `$columns - 1` because offsetting by the width of an entire row isn't possible
|
60
|
+
@for $i from 0 through ($columns - 1) {
|
61
|
+
@if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
|
62
|
+
.offset#{$infix}-#{$i} {
|
63
|
+
@include make-col-offset($i, $columns);
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
/// Grid system
|
2
|
+
//
|
3
|
+
// Generate semantic grid columns with these mixins.
|
4
|
+
|
5
|
+
@mixin make-container() {
|
6
|
+
width: 100%;
|
7
|
+
padding-right: ($grid-gutter-width / 2);
|
8
|
+
padding-left: ($grid-gutter-width / 2);
|
9
|
+
margin-right: auto;
|
10
|
+
margin-left: auto;
|
11
|
+
}
|
12
|
+
|
13
|
+
|
14
|
+
// For each breakpoint, define the maximum width of the container in a media query
|
15
|
+
@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
|
16
|
+
@each $breakpoint, $container-max-width in $max-widths {
|
17
|
+
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
18
|
+
max-width: $container-max-width;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
@mixin make-row() {
|
24
|
+
display: flex;
|
25
|
+
flex-wrap: wrap;
|
26
|
+
margin-right: ($grid-gutter-width / -2);
|
27
|
+
margin-left: ($grid-gutter-width / -2);
|
28
|
+
}
|
29
|
+
|
30
|
+
@mixin make-col-ready() {
|
31
|
+
position: relative;
|
32
|
+
// Prevent columns from becoming too narrow when at smaller grid tiers by
|
33
|
+
// always setting `width: 100%;`. This works because we use `flex` values
|
34
|
+
// later on to override this initial width.
|
35
|
+
width: 100%;
|
36
|
+
min-height: 1px; // Prevent collapsing
|
37
|
+
padding-right: ($grid-gutter-width / 2);
|
38
|
+
padding-left: ($grid-gutter-width / 2);
|
39
|
+
}
|
40
|
+
|
41
|
+
@mixin make-col($size, $columns: $grid-columns) {
|
42
|
+
flex: 0 0 percentage($size / $columns);
|
43
|
+
// Add a `max-width` to ensure content within each column does not blow out
|
44
|
+
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
|
45
|
+
// do not appear to require this.
|
46
|
+
max-width: percentage($size / $columns);
|
47
|
+
}
|
48
|
+
|
49
|
+
@mixin make-col-offset($size, $columns: $grid-columns) {
|
50
|
+
$num: $size / $columns;
|
51
|
+
margin-left: if($num == 0, 0, percentage($num));
|
52
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
// stylelint-disable indentation
|
2
|
+
@mixin hover {
|
3
|
+
// TODO: re-enable along with mq4-hover-shim
|
4
|
+
// @if $enable-hover-media-query {
|
5
|
+
// // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover
|
6
|
+
// // Currently shimmed by https://github.com/twbs/mq4-hover-shim
|
7
|
+
// @media (hover: hover) {
|
8
|
+
// &:hover { @content }
|
9
|
+
// }
|
10
|
+
// }
|
11
|
+
// @else {
|
12
|
+
&:hover { @content; }
|
13
|
+
// }
|
14
|
+
}
|
15
|
+
|
16
|
+
|
17
|
+
@mixin hover-focus {
|
18
|
+
@if $enable-hover-media-query {
|
19
|
+
&:focus {
|
20
|
+
@content;
|
21
|
+
}
|
22
|
+
@include hover { @content; }
|
23
|
+
} @else {
|
24
|
+
&:focus,
|
25
|
+
&:hover {
|
26
|
+
@content;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
@mixin plain-hover-focus {
|
32
|
+
@if $enable-hover-media-query {
|
33
|
+
&,
|
34
|
+
&:focus {
|
35
|
+
@content;
|
36
|
+
}
|
37
|
+
@include hover { @content; }
|
38
|
+
} @else {
|
39
|
+
&,
|
40
|
+
&:focus,
|
41
|
+
&:hover {
|
42
|
+
@content;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
@mixin hover-focus-active {
|
48
|
+
@if $enable-hover-media-query {
|
49
|
+
&:focus,
|
50
|
+
&:active {
|
51
|
+
@content;
|
52
|
+
}
|
53
|
+
@include hover { @content; }
|
54
|
+
} @else {
|
55
|
+
&:focus,
|
56
|
+
&:active,
|
57
|
+
&:hover {
|
58
|
+
@content;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
// Image Mixins
|
2
|
+
// - Responsive image
|
3
|
+
// - Retina image
|
4
|
+
|
5
|
+
|
6
|
+
// Responsive image
|
7
|
+
//
|
8
|
+
// Keep images from scaling beyond the width of their parents.
|
9
|
+
|
10
|
+
@mixin img-fluid {
|
11
|
+
// Part 1: Set a maximum relative to the parent
|
12
|
+
max-width: 100%;
|
13
|
+
// Part 2: Override the height to auto, otherwise images will be stretched
|
14
|
+
// when setting a width and height attribute on the img element.
|
15
|
+
height: auto;
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
// Retina image
|
20
|
+
//
|
21
|
+
// Short retina mixin for setting background-image and -size.
|
22
|
+
|
23
|
+
// stylelint-disable indentation, media-query-list-comma-newline-after
|
24
|
+
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
|
25
|
+
background-image: url($file-1x);
|
26
|
+
|
27
|
+
// Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
|
28
|
+
// but doesn't convert dppx=>dpi.
|
29
|
+
// There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
|
30
|
+
// Compatibility info: https://caniuse.com/#feat=css-media-resolution
|
31
|
+
@media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
|
32
|
+
only screen and (min-resolution: 2dppx) { // Standardized
|
33
|
+
background-image: url($file-2x);
|
34
|
+
background-size: $width-1x $height-1x;
|
35
|
+
}
|
36
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
// List Groups
|
2
|
+
|
3
|
+
@mixin list-group-item-variant($state, $background, $color) {
|
4
|
+
.list-group-item-#{$state} {
|
5
|
+
color: $color;
|
6
|
+
background-color: $background;
|
7
|
+
}
|
8
|
+
|
9
|
+
a.list-group-item-#{$state},
|
10
|
+
button.list-group-item-#{$state} {
|
11
|
+
color: $color;
|
12
|
+
|
13
|
+
@include hover-focus {
|
14
|
+
color: $color;
|
15
|
+
background-color: darken($background, 5%);
|
16
|
+
}
|
17
|
+
|
18
|
+
&.active {
|
19
|
+
color: #fff;
|
20
|
+
background-color: $color;
|
21
|
+
border-color: $color;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
// Navbar vertical align
|
2
|
+
//
|
3
|
+
// Vertically center elements in the navbar.
|
4
|
+
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);`
|
5
|
+
// to calculate the appropriate top margin.
|
6
|
+
|
7
|
+
// @mixin navbar-vertical-align($element-height) {
|
8
|
+
// margin-top: (($navbar-height - $element-height) / 2);
|
9
|
+
// margin-bottom: (($navbar-height - $element-height) / 2);
|
10
|
+
// }
|
@@ -0,0 +1,22 @@
|
|
1
|
+
// Pagination
|
2
|
+
|
3
|
+
@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
|
4
|
+
.page-link {
|
5
|
+
padding: $padding-y $padding-x;
|
6
|
+
font-size: $font-size;
|
7
|
+
line-height: $line-height;
|
8
|
+
}
|
9
|
+
|
10
|
+
.page-item {
|
11
|
+
&:first-child {
|
12
|
+
.page-link {
|
13
|
+
@include border-left-radius($border-radius);
|
14
|
+
}
|
15
|
+
}
|
16
|
+
&:last-child {
|
17
|
+
.page-link {
|
18
|
+
@include border-right-radius($border-radius);
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|