30 lines
846 B
SCSS
30 lines
846 B
SCSS
$base-background-color: #f5f5f5;
|
|
|
|
$base-font-family: "Helvetica Neue", Helvetica, "Open Sans", sans-serif;
|
|
$base-font-weight: lighter;
|
|
$base-letter-spacing: 1px;
|
|
|
|
$base-link-color: #ffffff;
|
|
$base-link-hover-color: #e9e9e9;
|
|
|
|
$header-background-color: #263238;
|
|
$header-border-color: 1px solid #182024;
|
|
|
|
$sidebar-background-color: #37474f;
|
|
$sidebar-border-color: 1px solid rgba(255, 255, 255, .1);
|
|
$sidebar-text-color: #d7dadc;
|
|
$sidebar-text-active-color: #ffffff;
|
|
|
|
$screen-xs-max: "(max-width: 549px)";
|
|
$screen-sm-min: "(min-width: 550px)";
|
|
$screen-sm-max: "(max-width: 991px)";
|
|
$screen-md-min: "(min-width: 992px)";
|
|
$screen-md-max: "(max-width: 1199px)";
|
|
$screen-lg-min: "(min-width: 1200px)";
|
|
|
|
body {
|
|
font-family: $base-font-family;
|
|
font-weight: $base-font-weight;
|
|
letter-spacing: $base-letter-spacing;
|
|
background: $base-background-color;
|
|
} |