
* move embedded components to EmbeddedModule * add PrettyPrint service; load pretty print js dynamically * make code-example to syntax highlighting w/ `prettyPrintOne` * add code-tabs * Implement copy code button
25 lines
603 B
SCSS
Executable File
25 lines
603 B
SCSS
Executable File
$small-breakpoint-width: 840px;
|
|
|
|
// TYPOGRAPHY
|
|
$main-font: "Roboto","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
|
|
$code-font: "Droid Sans Mono", monospace;
|
|
|
|
// COLOR PALETTE
|
|
$blue: #1976D2;
|
|
$brightred: #DD0031;
|
|
$darkred: #C3002F;
|
|
$white: #FFFFFF;
|
|
$offwhite: #FAFAFA;
|
|
$backgroundgray: #F1F1F1;
|
|
$lightgray: #DBDBDB;
|
|
$mediumgray: #7E7E7E;
|
|
$darkgray: #333;
|
|
$black: #0A1014;
|
|
$codegreen: #17ff0b;
|
|
$orange: #FF9800;
|
|
$anti-pattern: $brightred;
|
|
|
|
// GRADIENTS
|
|
$bluegradient: linear-gradient(145deg,#0D47A1,#42A5F5);
|
|
$redgradient: linear-gradient(145deg,$darkred,$brightred);
|