ec01d33b50
Simplifies the grunt watch task for sass. Renames sass partials with leading underscores. Flattens stylesheet directory. The only remaining raw css file is options.css. Move globally-relevant styles to _global. Shrink overall font size.
15 lines
309 B
SCSS
15 lines
309 B
SCSS
// colors
|
|
$blue_l: #a2d2f4;
|
|
$blue: #2a92e7;
|
|
$grey_l: #f3f3f3;
|
|
$grey: #616161;
|
|
$grey_d: #454545;
|
|
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
src: url('/fonts/Roboto-Regular.ttf') format('truetype');
|
|
}
|
|
$roboto: Roboto, 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
|
|
$header-height: 36px;
|
|
$header-color: #f2f2f2;
|