2016-03-01 01:18:00 +03:00
|
|
|
// Colors
|
|
|
|
// ---------------------------
|
2016-11-01 18:00:38 +03:00
|
|
|
$primary-color: #0033a0;
|
|
|
|
$secondary-color: #263238;
|
|
|
|
$black: #263238;
|
|
|
|
$green: #00aa13;
|
|
|
|
$yellow: #f1c400;
|
|
|
|
$red: #e53935;
|
|
|
|
$background-color: #fff;
|
2015-11-22 16:45:27 +03:00
|
|
|
|
2016-11-01 18:00:38 +03:00
|
|
|
$em-size: 14px;
|
2016-03-01 01:18:00 +03:00
|
|
|
|
|
|
|
// Font weights
|
|
|
|
// ---------------------------
|
2016-11-01 18:00:38 +03:00
|
|
|
$light: 300;
|
|
|
|
$regular: 400;
|
|
|
|
$bold: 700;
|
2016-03-01 01:18:00 +03:00
|
|
|
|
|
|
|
// Base Font
|
|
|
|
// ---------------------------
|
2016-11-01 18:00:38 +03:00
|
|
|
$base-font: Roboto;
|
|
|
|
$base-font-family: sans-serif;
|
|
|
|
$base-font-weight: $light;
|
|
|
|
$base-font-size: 1em;
|
|
|
|
$base-line-height: 1.55em;
|
|
|
|
$text-color: $black;
|
2016-03-01 01:18:00 +03:00
|
|
|
|
|
|
|
// Heading Font
|
|
|
|
// ---------------------------
|
2016-11-01 18:00:38 +03:00
|
|
|
$headers-font: Montserrat;
|
|
|
|
$headers-font-family: sans-serif;
|
|
|
|
$headers-font-weight: $regular;
|
|
|
|
$headers-color: $primary-color;
|
|
|
|
$method-headers-color: $primary-color;
|
2016-03-01 01:18:00 +03:00
|
|
|
$h1: 1.85714285714286em;
|
|
|
|
$h2: 1.5714285714285714em;
|
|
|
|
$h3: 1.2857142857142858em;
|
|
|
|
$h4: 1.1428571428571428em;
|
2016-03-02 22:48:55 +03:00
|
|
|
$h5: 0.929em;
|
2016-03-01 01:18:00 +03:00
|
|
|
|
2016-11-01 18:00:38 +03:00
|
|
|
// spacings
|
|
|
|
$section-spacing: 40px;
|
|
|
|
|
2016-03-01 01:18:00 +03:00
|
|
|
// Side Bar
|
|
|
|
// ---------------------------
|
2015-12-20 23:19:56 +03:00
|
|
|
$side-bar-width: 260px;
|
2016-11-01 18:00:38 +03:00
|
|
|
$side-bar-bg-color: #fafafa;
|
2015-11-26 23:06:54 +03:00
|
|
|
$side-menu-item-color: #384248;
|
2016-11-01 18:00:38 +03:00
|
|
|
$side-menu-even-bg-color: #f0f0f0;
|
2016-03-02 22:48:55 +03:00
|
|
|
$side-menu-active-bg-color: #f0f0f0;
|
2015-11-26 23:06:54 +03:00
|
|
|
$side-menu-item-hpadding: 20px;
|
|
|
|
$side-menu-item-vpadding: 5px;
|
2015-11-22 16:45:27 +03:00
|
|
|
|
2016-03-01 01:18:00 +03:00
|
|
|
// Sample Panel
|
|
|
|
// ---------------------------
|
2016-03-01 21:08:02 +03:00
|
|
|
$samples-panel-bg-color: $black;
|
2015-11-22 16:45:27 +03:00
|
|
|
$samples-panel-width: 40%;
|
2016-03-01 21:08:02 +03:00
|
|
|
$sample-panel-headers-color: lighten($black, 50%);
|
|
|
|
$sample-panel-color: lighten($black, 80%);
|
2015-11-22 16:45:27 +03:00
|
|
|
|
2016-11-01 18:00:38 +03:00
|
|
|
$tree-lines-color: rgba($primary-color, 0.5);
|
2016-01-21 18:26:54 +03:00
|
|
|
|
|
|
|
$side-menu-mobile-breakpoint: 1000px;
|
2016-08-10 15:29:49 +03:00
|
|
|
$right-panel-squash-breakpoint: 1100px;
|
2016-03-01 01:18:00 +03:00
|
|
|
|
2016-03-01 21:08:02 +03:00
|
|
|
// Border Radius
|
|
|
|
// ---------------------------
|
|
|
|
$border-radius: 2px;
|
2016-11-01 18:00:38 +03:00
|
|
|
|
|
|
|
// texts
|
|
|
|
$array-text: 'Array of ';
|
|
|
|
$tuple-text: 'Tuple ';
|