42 lines
1.2 KiB
SCSS
42 lines
1.2 KiB
SCSS
/* Font (Options: 'Lucida Console' or 'DOS') */
|
|
$font: 'Lucida Console';
|
|
$font-size: 18px;
|
|
|
|
/* Characters */
|
|
$checkbox-on: '[√]';
|
|
$checkbox-off: '[\00a0]';
|
|
$radio-on: '(•)';
|
|
$radio-off: '(\00a0)';
|
|
|
|
/* Theme */
|
|
$primary: rgb(0, 0, 168);
|
|
$secondary: rgb(168, 168, 168);
|
|
$success: rgb(0, 168, 0);
|
|
$danger: rgb(168, 0, 0);
|
|
$warning: rgb(168, 168, 0);
|
|
$info: rgb(0, 168, 168);
|
|
|
|
/* Responsive */
|
|
$small-screen-up: 601px;
|
|
$medium-screen-up: 993px;
|
|
$large-screen-up: 1201px;
|
|
$small-screen: 600px;
|
|
$medium-screen: 992px;
|
|
$large-screen: 1200px;
|
|
$medium-and-up: "only screen and (min-width : #{$small-screen-up})";
|
|
$large-and-up: "only screen and (min-width : #{$medium-screen-up})";
|
|
$extra-large-and-up: "only screen and (min-width : #{$large-screen-up})";
|
|
$small-and-down: "only screen and (max-width : #{$small-screen})";
|
|
$medium-and-down: "only screen and (max-width : #{$medium-screen})";
|
|
$medium-only: "only screen and (min-width : #{$small-screen-up}) and (max-width : #{$medium-screen})";
|
|
|
|
/* Scrool */
|
|
$scroll-default-tui: true;
|
|
$scroll-default-image: url(images/scroll-cyan.png);
|
|
$scroll-default-color: rgb(0, 168, 168);
|
|
|
|
/* Grid */
|
|
$num-cols: 12;
|
|
$gutter-width: 1.5rem;
|
|
$element-top-margin: $gutter-width/3;
|
|
$element-bottom-margin: ($gutter-width*2)/3; |