23 lines
397 B
SCSS
23 lines
397 B
SCSS
// Media Queries
|
|
$smallMobile: 375px;
|
|
$bigMobile: 480px;
|
|
$tablet: 768px;
|
|
$toDesktop: 1023px;
|
|
$desktop: 1024px;
|
|
$monitor: 1220px;
|
|
$big: 1440px;
|
|
|
|
// colors
|
|
$text-color: #666;
|
|
|
|
// text
|
|
$body-font-size: 16;
|
|
$body-line-height: 24;
|
|
$primary-font: 'Roboto Mono', monospace;
|
|
$secondary-font: 'bebas_neuebold', sans-serif;
|
|
|
|
// layout
|
|
$container-width: 600;
|
|
$browse-left-width: 180;
|
|
$container-padding: 24;
|