136 lines
2.9 KiB
SCSS
136 lines
2.9 KiB
SCSS
$prefix: 'bs-';
|
|
|
|
$primary: #005eb8;
|
|
$secondary: #e93cac;
|
|
$success: #97d700;
|
|
$info: #41b6e6;
|
|
$warning: #ffc72c;
|
|
$danger: #da291c;
|
|
|
|
$light: #b3b3b3;
|
|
$dark: #33322e;
|
|
|
|
|
|
$form-valid-color: #5B8100;
|
|
|
|
$font-family-base: 'Sentient', serif;
|
|
$font-family-sans: 'Libre Franklin', sans-serif;
|
|
$font-family-code: 'Azeret Mono', monospace;
|
|
$display-font-family: 'Cormorant', serif;
|
|
$headings-font-family: 'Libre Franklin', sans-serif;
|
|
$btn-font-family: #{$headings-font-family};
|
|
$headings-font-bold: 700 !important;
|
|
$headings-font-medium: 500 !important;
|
|
$font-weight-black: 900;
|
|
$btn-font-weight: 500;
|
|
|
|
$font-size-base: 1rem;
|
|
$small-font-size: 0.875em;
|
|
$smaller-font-size: 10px;
|
|
$code-font-size: 0.85em;
|
|
$btn-font-size: 0.875rem;
|
|
|
|
$h1-font-size: $font-size-base * 2.5;
|
|
$h2-font-size: $font-size-base * 2;
|
|
$h3-font-size: $font-size-base * 1.75;
|
|
$h4-font-size: $font-size-base * 1.5;
|
|
$h5-font-size: $font-size-base * 1.25;
|
|
$h6-font-size: $font-size-base;
|
|
|
|
$display-font-style: italic;
|
|
$display-font-weight: 700;
|
|
$display-line-height: 1.1;
|
|
|
|
$display-font-sizes: (
|
|
1: 54px,
|
|
2: 44px,
|
|
3: 39px,
|
|
4: 33px,
|
|
5: 27px,
|
|
6: 22px
|
|
) !default;
|
|
|
|
$font-sizes: (
|
|
1: $font-size-base * 2.5,
|
|
2: $font-size-base * 2,
|
|
3: $font-size-base * 1.75,
|
|
4: $font-size-base * 1.5,
|
|
5: $font-size-base * 1.25,
|
|
6: $font-size-base * 1,
|
|
7: $font-size-base * 0.875,
|
|
8: $font-size-base * 0.75,
|
|
9: $font-size-base * 0.625
|
|
) !default;
|
|
|
|
$spacer: 1rem;
|
|
|
|
$position-values: (
|
|
0: 0,
|
|
1: $spacer * 0.25,
|
|
2: $spacer * 0.5,
|
|
3: $spacer * 0.75,
|
|
4: $spacer * 1,
|
|
5: $spacer * 2,
|
|
6: $spacer * 3,
|
|
7: $spacer * 4,
|
|
8: $spacer * 5,
|
|
9: $spacer * 6,
|
|
25: 25%,
|
|
50: 50%,
|
|
75: 75%,
|
|
100: 100%,
|
|
auto: auto
|
|
) !default;
|
|
|
|
$navbar-padding-x: 0;
|
|
$navbar-padding-y: 0;
|
|
|
|
$navbar-toggler-padding-y: 0;
|
|
$navbar-toggler-padding-x: 0;
|
|
|
|
$navbar-brand-padding-y: 0.25rem;
|
|
$navbar-brand-padding-x: 0.25rem;
|
|
|
|
$navbar-light-toggler-border-color: transparent;
|
|
|
|
$navbar-toggler-font-size: 1.5rem;
|
|
$navbar-toggler-border-radius: none;
|
|
|
|
$navbar-buttons-border-color: rgba(0, 0, 0, 0.125);
|
|
$navbar-buttons-border-style: solid;
|
|
$navbar-buttons-border-thickness: 1px;
|
|
|
|
$nav-link-padding-x: 0;
|
|
$nav-link-padding-y: 0.25rem;
|
|
|
|
$nav-item-font-size: 1.25rem;
|
|
|
|
$badge-border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity, 0.5));
|
|
$badge-color: rgba(var(--bs-primary-rgb), 1);
|
|
$badge-border: 1px solid #{$badge-border-color};
|
|
$badge-border-radius: 4px 4px 8px 4px;
|
|
$badge-font-weight: 500;
|
|
$badge-font-family: #{$headings-font-family};
|
|
$badge-padding-x: 0.5rem;
|
|
|
|
$link-color: $dark;
|
|
|
|
$gnosis-sidebar-border-width: 0 1px 0 0;
|
|
$gnosis-sidebar-mobile-border-width: 1px 0 0;
|
|
$gnosis-sidebar-border-style: solid;
|
|
$gnosis-sidebar-border-color: rgba(0, 0, 0, 0.125);
|
|
$gnosis-sidebar-item-border-width: 0 0 1px 0;
|
|
$gnosis-sidebar-item-status-width: 2px 0 0 0;
|
|
|
|
$grid-row-columns: 12;
|
|
$enable-grid: true;
|
|
|
|
$container-max-widths: (
|
|
sm: 540px,
|
|
md: 720px,
|
|
lg: 960px,
|
|
xl: 1140px,
|
|
xxl: 1440px
|
|
) !default;
|
|
|