Newer
Older
// sass-lint:disable no-color-keywords; no-color-hex
Chris Lawton
committed
// Set via JS
:root {
--header-admin-height: 0;
Chris Lawton
committed
--last-listing-item-height: 0;
// Default
$color--white: #fff;
$color--black: #141414;
Fredrik Jonsson
committed
$color--dark-grey: #404041;
$color--light-grey: #f7f7f7;
$color--light-blue: #0d7db0;
$color--dark-blue: #0c72a0;
$color--darkest-blue: #3d6bdb;
$color--mustard: #e6ab32;
$color--purple: #8c0bbf;
$color--pink: #e35ca6;
$color--light-pink: #ffe1df;
$color--tomato: #f05e54;
$color--mint: #40c2ad;
$color--grass: #7dc588;
$color--ocean: #1888b1;
$color--pastel-red: #f1a9a9;
$color--pastel-green: #afe6af;
$color--fog: #eff2f5;
// Social
$color--twitter: #1da6f6;
$color--linkedin: #137ab8;
$color--facebook: #396ab5;
// Transparent
$color--black-60: rgba(0, 0, 0, .6);
$color--black-50: rgba(0, 0, 0, .5);
$color--black-40: rgba(0, 0, 0, .4);
Fredrik Jonsson
committed
$color--black-25: rgba(0, 0, 0, .25);
$color--black-20: rgba(0, 0, 0, .2);
$color--black-10: rgba(0, 0, 0, .1);
Fredrik Jonsson
committed
$color--white-50: rgba(255, 255, 255, .5);
$color--white-40: rgba(255, 255, 255, .4);
$color--white-25: rgba(255, 255, 255, .25);
$color--white-20: rgba(255, 255, 255, .2);
$color--white-10: rgba(255, 255, 255, .1);
$color--light-blue-90: transparentize($color--light-blue, .9);
// Assignment
$color--default: $color--dark-grey;
$color--primary: $color--light-blue;
$color--error: $color--tomato;
$color--correct: $color--mint;
// Fonts
$font--primary: 'noto-sans';
$font--headings: 'montserrat';
// Font weights
$weight--black: 800;
$weight--bold: 700;
$weight--semibold: 600;
$weight--normal: 400;
$weight--light: 200;
// Font sizes
$base-font-size: 16px;
$base-font-size-large: 19px;
$base-line-height: 24px;
$base-line-height-large: 29px;
$font-sizes: (
alpha: 72px,
beta: 42px,
gamma: 36px,
delta: 24px,
epsilon: 17px,
zeta: 15px,
milli: 13px
);
// Wrappers
$site-width: 1280px;
$wrapper--medium: 1020px;
$wrapper--small: 790px;
// Breakpoints
$breakpoints: (
'mob-portrait' '(min-width: 320px)',
'mob-landscape' '(min-width: 480px)',
'tablet-portrait' '(min-width: 768px)',
'tablet-landscape' '(min-width: 1024px)',
'laptop-short' '(min-width: 1024px) and (max-height: 1280px)',
Chris Lawton
committed
'desktop-medium' '(min-width: 1920px)',
'desktop-wide' '(min-width: 2556px)'
$transition: .25s ease-out;
$quick-transition: .15s ease;
$medium-transition: .5s ease;
// Delays
$base-delay: 30ms;
// Filters
$filter-dropdown: '.select2 .select2-selection.select2-selection--single';
// listing header/spacer height
$listing-header-height: 75px;
// Table breakpoint
$table-breakpoint: 'tablet-landscape';