File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ @charset " utf-8" ;
2+
3+ // Our variables
4+ $base-font-family : Cambria, " Book Antiqua" , Palatino, serif ;
5+ $base-font-size : 16px ;
6+ $small-font-size : $base-font-size * 0.875 ;
7+ $base-line-height : 1.5 ;
8+
9+ $titling-font-family : Tahoma , Geneva, sans-serif ;
10+
11+
12+ $spacing-unit : 30px ;
13+
14+ $text-color : #111 ;
15+ $background-color : #fdfdfd ;
16+ $brand-color : #2B7BB1 ;
17+
18+ $grey-color : #757575 ;
19+ $grey-color-light : lighten ($grey-color , 40% );
20+ $grey-color-dark : darken ($grey-color , 25% );
21+
22+ $on-palm : 600px ;
23+ $on-laptop : 800px ;
24+
25+
26+
27+ // Using media queries with like this:
28+ // @include media-query($palm) {
29+ // .wrapper {
30+ // padding-right: $spacing-unit / 2;
31+ // padding-left: $spacing-unit / 2;
32+ // }
33+ // }
34+ @mixin media-query ($device ) {
35+ @media screen and (max-width : $device ) {
36+ @content ;
37+ }
38+ }
39+
40+
41+ $color-scheme-auto : false;
42+ $color-scheme-dark : false;
43+ @import " minima/skins/auto" ;
You can’t perform that action at this time.
0 commit comments