47 lines
1.1 KiB
SCSS
47 lines
1.1 KiB
SCSS
// vim: tabstop=2 shiftwidth=2 expandtab
|
|
|
|
$bg_color: #010018;
|
|
$link_color: #2081c8;
|
|
$fg_color: #e4e4e4;
|
|
$title_base_color: #ffc467;
|
|
$title_h1_color: lighten($title_base_color, 0%);
|
|
$title_h2_color: lighten($title_base_color, 10%);
|
|
$title_h3_color: lighten($title_base_color, 20%);
|
|
$secondary_bg_color: #178ca7;
|
|
$head_bg_color: $secondary_bg_color;
|
|
$footer_fg_color: darken($fg_color, 30%);
|
|
$ingred_qt_color: #efc586;
|
|
|
|
$font_size_large: 12pt;
|
|
$font_size_med: 11pt;
|
|
$font_size_small: 10pt;
|
|
|
|
// Veganness
|
|
$veganness_vegan_color: #40d540;
|
|
$veganness_veganisable_color: #bfce2a;
|
|
$veganness_vege_color: #ce8649;
|
|
|
|
// Seasonality
|
|
$season_winter_color: #02bace;
|
|
$season_summer_color: #ff3838;
|
|
|
|
// Quality recipe
|
|
$quality_recipe_color: #ffee00;
|
|
|
|
// Responsiveness
|
|
$width_xlarge: 1250px;
|
|
$width_large: 1000px;
|
|
$width_med: 650px;
|
|
|
|
$ingred_width_xlarge: 300px;
|
|
$ingred_width_large: 250px;
|
|
$ingred_hmargin_xlarge: 50px;
|
|
$ingred_hmargin_large: 25px;
|
|
$content_width_xlarge: 800px;
|
|
$content_width_large: 650px;
|
|
|
|
$hmargin_small: 2vw;
|
|
|
|
$width_contentcenter: $content_width_xlarge
|
|
+ 2*($ingred_width_xlarge
|
|
+ 1.5*$ingred_hmargin_xlarge);
|