1
0
mirror of https://github.com/minio/docs.git synced 2025-04-25 17:22:39 +03:00
docs/source/_static/scss/includes/_variables.scss
2022-09-16 13:46:52 -05:00

81 lines
1.3 KiB
SCSS

// Colors
$white: #ffffff;
$black: #000000;
$theme-red: #c72e49;
// Gray shades light
$light-100: #F5F5F5;
$light-200: #EFF0F1;
$light-300: #E8EAEC;
$light-400: #E1E3E6;
$light-500: #D9DDE2;
// Gray shades dark
$dark-0: #19202A;
$dark-100: #212936;
$dark-200: #273140;
$dark-300: #2E394A;
$dark-400: #59667A;
$dark-500: #8A93A4;
// Breakpoints
$breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1280px
);
// z-index
$z-index-header: 11;
// Body
$font-family-base: 'Inter', sans-serif;
$font-family-headings: 'Inter', sans-serif;
$font-family-mono: Courier New, Courier ,monospace;
$root-font-size: 16px;
$body-font-size: 1rem;
$body-line-height: 1.6;
// Text
$text-dark-color: #A2ADC0;
$headings-dark-color: #E3EEEF;
// Font size
$font-size-sm: 0.8125rem;
$font-size-md: 0.9375rem;
// Layout
$container-width: 1400px;
:root {
--content-padding: 1.75rem;
@include breakpoint-max(breakpoints(lg)) {
--content-padding: 1.25rem;
}
}
// Font weight
$font-weight-normal: 400;
$font-weight-medium: 500;
$font-weight-bold: 700;
// Header
$header-light-bg: #031733;
// Sidebar
$sidebar-width: 18rem;
// Border Radius
$border-radius: 0.1875rem;
$border-radius-sm: 0.125rem;
$border-radius-lg: 0.3125rem;
// Nav - FIXME
$nav-sub-hover-bg: #f8f8f8;
$nav-mobile-bg: $white;
$nav-mobile-width: 300px;
$nav-active-z-index: 100;