redoc/lib/shared/styles/_variables.scss

73 lines
1.5 KiB
SCSS
Raw Normal View History

2016-03-01 01:18:00 +03:00
// Colors
// ---------------------------
$primary-color: #0033a0;
$secondary-color: #263238;
$black: #263238;
$green: #00aa13;
$yellow: #f1c400;
$red: #e53935;
$background-color: #fff;
$em-size: 14px;
2016-03-01 01:18:00 +03:00
// Font weights
// ---------------------------
$light: 300;
$regular: 400;
$bold: 700;
2016-03-01 01:18:00 +03:00
// Base Font
// ---------------------------
$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
// ---------------------------
$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
// 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;
$side-bar-bg-color: #fafafa;
2015-11-26 23:06:54 +03:00
$side-menu-item-color: #384248;
$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;
2016-03-01 01:18:00 +03:00
// Sample Panel
// ---------------------------
$samples-panel-bg-color: $black;
$samples-panel-width: 40%;
$sample-panel-headers-color: lighten($black, 50%);
$sample-panel-color: lighten($black, 80%);
$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
// Border Radius
// ---------------------------
$border-radius: 2px;
// texts
$array-text: 'Array of ';
$tuple-text: 'Tuple ';