2020-11-04 08:26:58 +01:00
|
|
|
// Color system
|
2020-04-15 15:48:16 +02:00
|
|
|
|
|
|
|
$white: #fff;
|
|
|
|
$gray-100: #f8f9fa;
|
|
|
|
$gray-200: #e9ecef;
|
|
|
|
$gray-300: #dee2e6;
|
|
|
|
$gray-400: #ced4da;
|
|
|
|
$gray-500: #adb5bd;
|
|
|
|
$gray-600: #6c757d;
|
|
|
|
$gray-700: #495057;
|
|
|
|
$gray-800: #343a40;
|
|
|
|
$gray-900: #212529;
|
|
|
|
$black: #000;
|
|
|
|
|
2020-11-04 08:26:58 +01:00
|
|
|
$yellow: #ffe000;
|
|
|
|
$black: #1d2d35;
|
|
|
|
$beige: #fbf7f0;
|
2022-01-14 09:27:54 +01:00
|
|
|
|
2021-03-04 17:53:25 +01:00
|
|
|
// $red: #e55235;
|
2020-11-04 08:26:58 +01:00
|
|
|
$purple: #5d2f86;
|
|
|
|
$brown: #aa9c84;
|
|
|
|
|
|
|
|
$blue-300: #8ed6fb;
|
2021-09-07 12:08:46 +02:00
|
|
|
$pink-100: #fcfaff;
|
2020-11-04 08:26:58 +01:00
|
|
|
$pink-500: #d32e9d;
|
|
|
|
|
|
|
|
$primary: $purple;
|
2020-04-15 15:48:16 +02:00
|
|
|
|
2021-06-17 11:20:48 +02:00
|
|
|
$color-btn-bg: $pink-500;
|
|
|
|
$color-btn-border: darken($pink-500, 5%);
|
|
|
|
$color-btn-text: $white;
|
|
|
|
|
2021-03-05 11:40:27 +01:00
|
|
|
// Options
|
|
|
|
//
|
|
|
|
// Quickly modify global styling by enabling or disabling optional features.
|
|
|
|
|
|
|
|
$enable-caret: true;
|
|
|
|
$enable-rounded: true;
|
|
|
|
$enable-shadows: false;
|
|
|
|
$enable-gradients: false;
|
|
|
|
$enable-transitions: true;
|
|
|
|
$enable-reduced-motion: true;
|
|
|
|
$enable-smooth-scroll: true;
|
|
|
|
$enable-grid-classes: true;
|
|
|
|
$enable-button-pointers: true;
|
|
|
|
$enable-rfs: true;
|
|
|
|
$enable-validation-icons: true;
|
|
|
|
$enable-negative-margins: true;
|
|
|
|
$enable-deprecation-messages: true;
|
|
|
|
$enable-important-utilities: true;
|
|
|
|
|
2020-04-15 15:48:16 +02:00
|
|
|
/** Bootstrap navbar fix (https://git.io/fADqW) */
|
|
|
|
$navbar-dark-toggler-icon-bg: none;
|
|
|
|
$navbar-light-toggler-icon-bg: none;
|
|
|
|
|
|
|
|
// Options
|
|
|
|
//
|
|
|
|
// Quickly modify global styling by enabling or disabling optional features.
|
|
|
|
|
2021-03-04 17:53:25 +01:00
|
|
|
// $enable-responsive-font-sizes: true;
|
2020-04-15 15:48:16 +02:00
|
|
|
|
|
|
|
// Body
|
|
|
|
//
|
|
|
|
// Settings for the `<body>` element.
|
|
|
|
|
|
|
|
$body-bg: $white;
|
2020-11-04 08:26:58 +01:00
|
|
|
$body-color: $black;
|
2020-04-15 15:48:16 +02:00
|
|
|
|
2021-03-04 17:53:25 +01:00
|
|
|
// Links
|
|
|
|
//
|
|
|
|
// Style anchor elements.
|
|
|
|
|
|
|
|
$link-color: $primary;
|
|
|
|
$link-decoration: none;
|
|
|
|
|
2020-04-15 15:48:16 +02:00
|
|
|
// Grid containers
|
|
|
|
//
|
|
|
|
// Define the maximum width of `.container` for different screen sizes.
|
|
|
|
|
|
|
|
$container-max-widths: (
|
|
|
|
sm: 540px,
|
|
|
|
md: 720px,
|
|
|
|
lg: 960px,
|
2021-03-04 17:53:25 +01:00
|
|
|
xl: 1240px,
|
|
|
|
xxl: 1320px
|
2020-04-15 15:48:16 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
@include _assert-ascending($container-max-widths, "$container-max-widths");
|
|
|
|
|
|
|
|
// Grid columns
|
|
|
|
//
|
|
|
|
// Set the number of columns and specify the width of the gutters.
|
|
|
|
|
|
|
|
$grid-columns: 16;
|
|
|
|
$grid-gutter-width: 48px;
|
|
|
|
$grid-row-columns: 6;
|
|
|
|
|
2020-11-04 08:26:58 +01:00
|
|
|
// Components
|
|
|
|
//
|
|
|
|
// Define common padding and border radius sizes and more.
|
|
|
|
|
|
|
|
$border-color: $gray-200;
|
|
|
|
|
2020-04-15 15:48:16 +02:00
|
|
|
// Typography
|
|
|
|
//
|
|
|
|
// Font, line-height, and color for body text, headings, and more.
|
|
|
|
|
|
|
|
// stylelint-disable value-keyword-case
|
|
|
|
$font-family-sans-serif: "Jost", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
|
|
$font-family-monospace: sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace;
|
|
|
|
$font-family-base: $font-family-sans-serif;
|
|
|
|
// stylelint-enable value-keyword-case
|
|
|
|
|
|
|
|
$font-size-base: 1rem; // Assumes the browser default, typically `16px`
|
|
|
|
$font-size-xl: $font-size-base * 1.375;
|
|
|
|
$font-size-lg: $font-size-base * 1.25;
|
|
|
|
$font-size-md: $font-size-base * 1.125;
|
|
|
|
$font-size-sm: $font-size-base * 0.875;
|
|
|
|
|
2021-09-07 12:08:46 +02:00
|
|
|
// $line-height-base: 1.5;
|
2020-04-15 15:48:16 +02:00
|
|
|
|
|
|
|
$headings-font-family: null;
|
2020-11-16 09:35:51 +01:00
|
|
|
$headings-font-weight: 700;
|
|
|
|
|
|
|
|
$lead-font-weight: 400;
|
2020-04-15 15:48:16 +02:00
|
|
|
|
|
|
|
// Spacing
|
|
|
|
//
|
|
|
|
// Control the default styling of most Bootstrap elements by modifying these
|
|
|
|
// variables. Mostly focused on spacing.
|
|
|
|
// You can add more entries to the $spacers map, should you need more variation.
|
|
|
|
|
|
|
|
$spacer: 1rem;
|
|
|
|
|
|
|
|
// Navbar
|
|
|
|
|
|
|
|
$navbar-padding-y: $spacer / 2;
|
2021-03-04 17:53:25 +01:00
|
|
|
$navbar-padding-x: null;
|
2020-04-15 15:48:16 +02:00
|
|
|
|
|
|
|
$navbar-nav-link-padding-x: 0.5rem;
|
2020-11-04 08:26:58 +01:00
|
|
|
|
|
|
|
$navbar-light-color: $black;
|
|
|
|
$navbar-light-hover-color: $primary;
|
|
|
|
$navbar-light-active-color: $primary;
|
|
|
|
|
|
|
|
// Cards
|
|
|
|
|
|
|
|
$card-border-color: $gray-200;
|
|
|
|
|
|
|
|
// Alerts
|
|
|
|
//
|
|
|
|
// Define alert colors, border radius, and padding.
|
|
|
|
|
2021-03-04 17:53:25 +01:00
|
|
|
$alert-padding-y: $spacer;
|
|
|
|
$alert-padding-x: $spacer * 1.5;
|
2020-11-04 08:26:58 +01:00
|
|
|
$alert-margin-bottom: 0;
|
|
|
|
$alert-border-radius: 0;
|
|
|
|
$alert-link-font-weight: $headings-font-weight;
|
|
|
|
$alert-border-width: 0;
|
|
|
|
|
2021-03-04 17:53:25 +01:00
|
|
|
$alert-bg-scale: 0;
|
|
|
|
$alert-border-scale: 0;
|
|
|
|
$alert-color-scale: 0;
|
2021-09-07 12:08:46 +02:00
|
|
|
|
|
|
|
// docsearch
|
|
|
|
$dropdown-config: (
|
|
|
|
main-color: $purple,
|
|
|
|
layout-type: normal,
|
|
|
|
layout-width: normal,
|
|
|
|
layout-alignment: align,
|
|
|
|
background-color: $white,
|
|
|
|
border-radius: 4,
|
|
|
|
border-width: 1,
|
|
|
|
border-color: $gray-200,
|
|
|
|
box-shadow: none,
|
|
|
|
branding-position: bottom,
|
|
|
|
spacing: normal,
|
|
|
|
include-desc: yes,
|
|
|
|
background-category-header: $white,
|
|
|
|
font-size: normal,
|
|
|
|
header-color: $black,
|
|
|
|
title-color: $black,
|
|
|
|
subtitle-color: $black,
|
|
|
|
text-color: $black,
|
|
|
|
highlight-color: $purple,
|
|
|
|
highlight-opacity: 0.1,
|
|
|
|
highlight-type: underline
|
|
|
|
);
|
|
|
|
|
|
|
|
$input-btn-focus-width: 0;
|