| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //
- // Variables
- // --------------------------------------------------
- //== Colors
- //
- $primary: $growi-blue !default;
- $secondary: #6c757d !default;
- $info: #009fbb !default;
- $success: #00bb83 !default;
- $warning: #ffa32b !default;
- $danger: #ff0a54 !default;
- $light: #e4e7ea !default;
- $dark: #343a40 !default;
- //== Typography
- //
- //## Font, line-height, and color for body text, headings, and more.
- $font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
- $font-family-serif: Georgia, "Times New Roman", Times, serif;
- $font-family-monospace: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
- $font-family-base: $font-family-sans-serif;
- $font-size-root: 14px;
- $line-height-base: 1.42857;
- //== Components
- //
- $border-radius: .15rem;
- $border-radius-sm: .1rem;
- $border-radius-lg: .25rem;
- $border-radius-xl: .35rem;
- //== Forms
- //
- // TODO: remove or set value for GW-2531
- // $input-border-radius: 0;
- // $input-border-radius-lg: 0;
- // $input-border-radius-sm: 0;
- //== Navs
- $nav-link-padding-y: 0.75rem;
- $nav-link-padding-x: 1rem;
- // TODO: remove or set value for GW-2531
- // $nav-tabs-border-radius: 0;
- //== Navbar
- $navbar-padding-y: 0;
- $navbar-brand-padding-y: 0;
- $navbar-nav-link-padding-x: 1rem;
- //== Dropdowns
- // TODO: remove or set value for GW-2531
- // $dropdown-border-radius: 0;
- //== card
- // TODO: remove or set value for GW-2531
- // $card-border-radius: 0;
- $card-spacer-y: 7px;
- $card-spacer-x: 15px;
- //== Modals
- $modal-content-border-width: 0;
- // TODO: remove or set value for GW-2531
- // $modal-content-border-radius: 0;
- $modal-header-padding-y: 0.75rem;
- $modal-header-padding-x: 1rem;
- //== Alerts
- // TODO: remove or set value for GW-2531
- // $alert-border-radius: 0;
- //== Progress bar
- $progress-height: 4px;
- // TODO: remove or set value for GW-2531
- // $progress-border-radius: 0;
- $progress-bg: #f0f0f0;
- $progress-box-shadow: none;
- //== Code
- $pre-color: dummyinvalildcolor; // disable pre color specification with invalid value
- //== Custom Checkbox
- // TODO: remove or set value for GW-2531
- // $custom-checkbox-indicator-border-radius: 0px;
- $custom-control-indicator-focus-box-shadow: none;
- $custom-control-indicator-size: 1.2rem;
|