DRAFT | new theme - minimage

This commit is contained in:
Don Harper 2023-02-07 22:52:35 -06:00
parent 5116fe4640
commit ac8d9e7eb3
90 changed files with 15302 additions and 1 deletions

View file

@ -0,0 +1,29 @@
// Size
$document-width--small: 320px;
$document-width--medium: 768px;
$document-width--large: $document-width--medium;
$document-width--xlarge: $document-width--medium;
// Color
$color-primary: #ffffff;
$color-font-base: #494949;
$color-font-white: #f6f6f6;
$color-grey: #a0a0a0;
$color-medium-grey: #b9b9b9;
$font-base-size: 16px;
$border-base-color: $color-grey;
// Breakpoints
$breakpoints: (
'small': 'screen and (max-width: #{$document-width--small})',
'medium': 'screen and (max-width: #{$document-width--medium})',
'large': 'screen and (max-width: #{$document-width--large})',
// 'xlarge': 'screen and (max-width: #{$document-width--xlarge})',
) !default;
// Easing
$ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);