-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.scss
55 lines (46 loc) · 1018 Bytes
/
styles.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
---
---
@charset "utf-8";
// Our variables
$base-font-family: "Fira Sans", sans-serif;
$base-font-size: 100%; // 16px by default
$base-font-weight: 400;
$bold-font-weight: 500;
$small-font-size: 0.9em;
$base-line-height: 1.64;
$spacing-unit: 32px;
$content-width: 850px;
$text-color: #333;
$background-color: #fff;
$brand-color: #b00;
$link-color: #3477ad;
$header-background: #ececec;
$footer-background: #234;
$footer-text: darken(#fff, 10%);
$grey-color: #828282;
$grey-color-lightest: #f8f8f8;
$grey-color-dark: darken($grey-color, 15%);
$grey-color-light: lighten($grey-color, 15%);
$on-palm: 600px;
$on-laptop: 800px;
@mixin media-query($device) {
@media screen and (max-width: $device) {
@content;
}
}
// Import partials from `sass_dir` (defaults to `_sass`)
@import
"base",
"layout",
"nav",
"footer",
"headings",
"home",
"publications",
"projects",
"talks",
"class",
"syntax-highlighting",
"cv",
"dark"
;