91098bc437
* Split SCSS for easier changes * Re-ordered SCSS files for easier overrides of defaults * Fixed padding classes with auto value * Added theme """stub"""
32 lines
930 B
SCSS
32 lines
930 B
SCSS
// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
|
|
|
|
|
|
/* Rounding > Corner */
|
|
@mixin corner-rounding-maker($size-key, $size-value) {
|
|
.rtl-#{$size-key} {
|
|
border-top-left-radius: #{$size-value};
|
|
}
|
|
.rtr-#{$size-key} {
|
|
border-top-right-radius: #{$size-value};
|
|
}
|
|
.rbl-#{$size-key} {
|
|
border-bottom-left-radius: #{$size-value};
|
|
}
|
|
.rbr-#{$size-key} {
|
|
border-bottom-right-radius: #{$size-value};
|
|
}
|
|
}
|
|
|
|
|
|
/* Rounding > Corner > Variable Sizes */
|
|
@include corner-rounding-maker("xs", calc(#{$border-base-radius} * 0.5));
|
|
@include corner-rounding-maker("s", calc(#{$border-base-radius} * 0.75));
|
|
@include corner-rounding-maker("m", #{$border-base-radius});
|
|
@include corner-rounding-maker("l", calc(#{$border-base-radius} * 1.5));
|
|
@include corner-rounding-maker("xl", calc(#{$border-base-radius} * 2.0));
|
|
|
|
|
|
/* Rounding > Corner > Fixed Sizes */
|
|
@include corner-rounding-maker("0", 0);
|
|
@include corner-rounding-maker("r", 50%);
|