-
Notifications
You must be signed in to change notification settings - Fork 50
/
styles.scss
53 lines (45 loc) · 1.11 KB
/
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
---
---
@charset "utf-8";
// Our variables
$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$base-font-size: 100%; // 16px by default
$small-font-size: 0.9rem;
$base-line-height: 1.64;
$spacing-unit: 32px;
$content-width: 800px;
$text-color: #414141;
$dark-text-color: #333;
$background-color: #fff;
$brand-color: #b00;
$yellow-color: #ffc000;
$link-color: #3477ad;
$header-background: #ececec;
$footer-background: #234;
$footer-text: darken(#fff, 10%);
$grey-color: #6b6b6b;
$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",
"blog",
"syntax-highlighting",
"cv"
;