// Site variables $background: {{ site.background }}; $primary_bg: {{ site.primary_color }}; $secondary_bg: {{ site.secondary_color }}; $text_color: {{ site.text_color }};

// End varialbe declarations

@import “header/header”, “footer”; body, html{

min-width: 425px;
background: $background;
// font settings
font-size: 18px;
color: $secondary_bg;
a, li{
    text-decoration: none;
    color: $secondary_bg;
}
ul{
    list-style: none;
}

}