lampuotomatis/resources/scss/components/_reboot.scss

63 lines
787 B
SCSS

//
// reboot.scss
//
html {
position: relative;
min-height: 100%;
}
:is(.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6) {
font-family: $headings-font-family;
}
label {
font-weight: $font-weight-medium;
margin-bottom: $form-label-margin-bottom;
}
b,
strong {
font-weight: $font-weight-semibold;
}
// blockquote
.blockquote {
padding: 10px 20px;
border-left: 4px solid var(--#{$prefix}border-color);
}
.blockquote-reverse {
border-left: 0;
border-right: 4px solid var(--#{$prefix}border-color);
text-align: right;
}
// container
:is(.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl) {
@media (min-width: 1200px) {
max-width: 1140px;
}
}
// row
.row>*{
position: relative;
}