-
-
Notifications
You must be signed in to change notification settings - Fork 443
/
Copy paththeme.scss
56 lines (46 loc) · 1.5 KB
/
theme.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Define defaults for each variable.
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
$heading-font-family: serif !default;
$code-font-family: monospace !default;
$base-font-size: 16px !default;
$base-font-weight: 400 !default;
$small-font-size: $base-font-size * 0.875 !default;
$base-line-height: 1.5 !default;
$spacing-unit: 30px !default;
$text-color: #111 !default;
$secondary-text-color: #666 !default;
$tertiary-text-color: #999 !default;
$background-color: #fdfdfd !default;
$brand-color: #2a7ae2 !default;
$announcement-color: #16A085 !default;
$lander-background-color: darken($secondary-background-color, 4%);
$grey-color: #828282 !default;
$grey-color-light: lighten($grey-color, 40%) !default;
$grey-color-dark: darken($grey-color, 25%) !default;
// Width of the content area
$content-width: 800px !default;
$post-content-width: 1100px !default;
$on-palm: 600px !default;
$on-laptop: 800px !default;
// Use media queries like this:
// @include media-query($on-palm) {
// .wrapper {
// padding-right: $spacing-unit / 2;
// padding-left: $spacing-unit / 2;
// }
// }
@mixin media-query($device) {
@media screen and (max-width: $device) {
@content;
}
}
%body-background {
background-color: $lander-background-color;
}
// Import partials.
@import
"theme/base",
"theme/layout",
"theme/buttons",
"theme/syntax-highlighting"
;