forked from rladies-zurich/workshop-02quarto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
81 lines (60 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*-- scss:defaults --*/
$theme-black: #4c4c4c;
$theme-white: white;
$theme-grey: #FAFAFA;
$theme-beige: #FFFEF2;
$theme-purple0: #FFF0F5;
$theme-purple1: #E6E6FA;
$theme-purple2: #CBC3E3;
$theme-purple3: #88398A;
$theme-purple4: #9d709e;
$theme-purple5: #562457;
$body-bg: $theme-white;
$body-color: $theme-black; // text color
$headings-color: $theme-purple5; // applies to all
$link-color: $theme-purple4;
// code
$code-color: #88398A;
$code-bg: $theme-grey;
$code-block-bg-alpha: -0.5;
$code-block-border-left: TRUE;
$code-block-border-left-style: solid;
// navigation
$navbar-bg: $theme-purple3;
// callout block
$callout-color-note: $theme-purple3;
$callout-color-tip: $theme-purple3;
// font
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code_Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&family=Lato&family=Yanone+Kaffeesatz&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
$font-family-sans-serif: 'Poppins', sans-serif;
$font-family-monospace: 'Source Code Pro', monospace;
$font-signika-negative: 'Signika Negative', sans-serif;
$font-poppins: 'Poppins', sans-serif;
//$font-family-sans-serif: 'Yanone Kaffeesatz', Tahoma, sans-serif;
//$font-family-sans-serif: 'Signika Negative';
/*-- scss:rules --*/
h1 {
color: $theme-purple5;
font-family: $font-signika-negative;
font-size: 40px;
//padding: 0.2em;
}
h2 {
color: $theme-purple5;
font-family: $font-signika-negative;
padding: 0.3em;
}
h3 {
color: $theme-purple4;
font-family: $font-signika-negative;
padding: 0.3em;
}
h4 {
color: $theme-purple5;
font-family: $font-signika-negative;
padding: 0.3em;
}