first commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
//
|
||||
// reboot.scss
|
||||
//
|
||||
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: $font-weight-semibold;
|
||||
}
|
||||
|
||||
// blockquote
|
||||
|
||||
.blockquote {
|
||||
padding: 10px 20px;
|
||||
border-left: 4px solid var(--#{$prefix}border-color-translucent);
|
||||
}
|
||||
|
||||
.blockquote-reverse {
|
||||
border-left: 0;
|
||||
border-right: 4px solid var(--#{$prefix}border-color-translucent);
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
// container
|
||||
|
||||
.container,
|
||||
.container-lg,
|
||||
.container-md,
|
||||
.container-sm,
|
||||
.container-xl,
|
||||
.container-xxl {
|
||||
@media (min-width: 1200px) {
|
||||
max-width: 1140px;
|
||||
}
|
||||
}
|
||||
|
||||
// row
|
||||
.row>*{
|
||||
position: relative;
|
||||
}
|
||||
|
||||
// mixing
|
||||
|
||||
@function set-color-from-background($color) {
|
||||
@if (lightness($color) > 70) {
|
||||
@return $color-contrast-dark;
|
||||
}
|
||||
@else {
|
||||
@return $color-contrast-light;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user