gnosis-css/css/scss/bootstrap/_variables.scss

135 lines
2.9 KiB
SCSS
Raw Normal View History

2024-06-12 19:31:18 +02:00
$prefix: 'bs-';
2024-05-28 13:11:00 +02:00
$primary: #005eb8;
$secondary: #e93cac;
$success: #97d700;
$info: #41b6e6;
$warning: #ffc72c;
$danger: #da291c;
2024-10-17 12:03:48 +02:00
$light: #fefcf5;
$dark: #0d0d0d;
2024-07-25 12:43:36 +02:00
$form-valid-color: #5B8100;
2024-05-28 13:11:00 +02:00
2024-06-12 19:31:18 +02:00
$font-family-base: 'Sentient', serif;
2024-05-28 13:11:00 +02:00
$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;
2024-07-04 11:07:29 +02:00
$btn-font-family: #{$headings-font-family};
2024-06-12 19:31:18 +02:00
$headings-font-bold: 700 !important;
$headings-font-medium: 500 !important;
$font-weight-black: 900;
2024-07-04 11:07:29 +02:00
$btn-font-weight: 500;
2024-05-28 13:11:00 +02:00
$font-size-base: 1rem;
$small-font-size: 0.875em;
2024-06-12 19:31:18 +02:00
$smaller-font-size: 10px;
2024-05-28 13:11:00 +02:00
$code-font-size: 0.85em;
2024-07-04 11:07:29 +02:00
$btn-font-size: 0.875rem;
2024-05-28 13:11:00 +02:00
$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,
2024-07-04 11:07:29 +02:00
6: 22px
2024-05-28 13:11:00 +02:00
) !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;
2024-06-12 19:31:18 +02:00
$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;
2024-07-04 11:07:29 +02:00
$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;
2024-05-28 13:11:00 +02:00
2024-06-12 19:31:18 +02:00
$link-color: $dark;
$gnosis-sidebar-border-width: 0 1px 0 0;
$gnosis-sidebar-mobile-border-width: 1px 0 0;
$gnosis-sidebar-border-style: solid;
2024-07-04 11:07:29 +02:00
$gnosis-sidebar-border-color: rgba(0, 0, 0, 0.125);
2024-06-12 19:31:18 +02:00
$gnosis-sidebar-item-border-width: 0 0 1px 0;
2024-07-04 11:07:29 +02:00
$gnosis-sidebar-item-status-width: 2px 0 0 0;
2024-06-12 19:31:18 +02:00
2024-07-04 11:07:29 +02:00
$grid-row-columns: 12;
$enable-grid: true;
2024-07-25 12:43:36 +02:00
2024-09-03 11:51:16 +02:00
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1140px,
xxl: 1440px
) !default;