Skip to content

Commit a8c0ffb

Browse files
committed
Make my own skin
1 parent b1d735b commit a8c0ffb

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

_sass/minima/skins/civitas.scss

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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";

0 commit comments

Comments
 (0)