98 lines
2 KiB
SCSS
98 lines
2 KiB
SCSS
// Font sizes
|
|
$font-size-nano: 0.8rem;
|
|
$font-size-micro: 1.0rem;
|
|
$font-size-mini: 1.2rem;
|
|
$font-size-small: 1.4rem;
|
|
$font-size-default: 1.6rem;
|
|
$font-size-medium: 1.8rem;
|
|
$font-size-large: 2.2rem;
|
|
$font-size-big: 2.4rem;
|
|
$font-size-bigger: 3.0rem;
|
|
$font-size-mega: 3.4rem;
|
|
$font-size-giga: 4.0rem;
|
|
|
|
// spaces
|
|
$zero: 0;
|
|
$space-micro: 0.2rem;
|
|
$space-smaller: 0.4rem;
|
|
$space-small: 0.8rem;
|
|
$space-one: 1rem;
|
|
$space-slab: 1.2rem;
|
|
$space-normal: 1.6rem;
|
|
$space-two: 2.0rem;
|
|
$space-medium: 2.4rem;
|
|
$space-large: 3.2rem;
|
|
$space-larger: 4.8rem;
|
|
$space-jumbo: 6.4rem;
|
|
$space-mega: 10.0rem;
|
|
|
|
// font-weight
|
|
$font-weight-feather: 100;
|
|
$font-weight-light: 300;
|
|
$font-weight-normal: 400;
|
|
$font-weight-medium: 500;
|
|
$font-weight-bold: 600;
|
|
$font-weight-black: 700;
|
|
|
|
//Navbar
|
|
$nav-bar-width: 23rem;
|
|
$header-height: 5.6rem;
|
|
|
|
$woot-logo-padding: $space-large $space-two;
|
|
|
|
// Colors
|
|
$color-woot: #1f93ff;
|
|
$color-gray: #6e6f73;
|
|
$color-light-gray: #999a9b;
|
|
$color-border: #e0e6ed;
|
|
$color-border-light: #f0f4f5;
|
|
$color-border-dark: #cad0d4;
|
|
$color-background: #f4f6fb;
|
|
$color-background-light: #f9fafc;
|
|
$color-white: #fff;
|
|
$color-body: #3c4858;
|
|
$color-heading: #1f2d3d;
|
|
$color-extra-light-blue: #f5f7f9;
|
|
|
|
$primary-color: $color-woot;
|
|
$secondary-color: #35c5ff;
|
|
$success-color: #44ce4b;
|
|
$warning-color: #ffc532;
|
|
$alert-color: #ff382d;
|
|
|
|
$masked-bg: rgba(0, 0, 0, .4);
|
|
|
|
// Color-palettes
|
|
|
|
$color-primary-light: #c7e3ff;
|
|
$color-primary-dark: darken($color-woot, 20%);
|
|
|
|
// Thumbnail
|
|
$thumbnail-radius: 4rem;
|
|
|
|
// chat-header
|
|
$conv-header-height: 4rem;
|
|
|
|
// Inbox List
|
|
|
|
$inbox-thumb-size: 4.8rem;
|
|
|
|
|
|
// Spinner
|
|
$spinkit-spinner-color: $color-white !default;
|
|
$spinkit-spinner-margin: 0 0 0 1.6rem !default;
|
|
$spinkit-size: 1.6rem !default;
|
|
|
|
// Snackbar default
|
|
$woot-snackbar-bg: #323232;
|
|
$woot-snackbar-button: #ffeb3b;
|
|
|
|
$swift-ease-out-duration: .4s !default;
|
|
$swift-ease-out-function: cubic-bezier(0.37, 0, 0.63, 1) !default;
|
|
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-function !default;
|
|
|
|
// Ionicons
|
|
$ionicons-font-path: '~ionicons/fonts';
|
|
|
|
// Transitions
|
|
$transition-ease-in: all 0.250s ease-in;
|