generated from tmarumt/r-devcontainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quartomonothemer.scss
85 lines (69 loc) · 1.77 KB
/
quartomonothemer.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
82
/*-- scss:defaults --*/
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap);
@import url(https://fonts.googleapis.com/css?family=Fira+Code&display=swap);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap);
// fonts
$font-family-sans-serif: "Noto Sans JP", sans-serif !default;
$font-family-monospace: "Fira Code", monospace !default;
// colors
$color_base: #0081B0 !default;
$color_accent: #D6431B !default;
$body_bg: #ffffff !default;
$body-color: #272822 !default;
$link-color: #D6431B !default;
// headings
$presentation-heading-font: "Noto Sans JP", sans-serif !default;
$presentation-heading-color: #0081B0 !default;
$h1-font-size: 1.6em !default;
$h2-font-size: 1.3em !default;
$h3-font-size: 1.15em !default;
$h4-font-size: 1.0em !default;
// code blocks
$code-block-border-color: #93a1a1 !default;
$code-color: #0081B0;
/*-- scss:rules --*/
$right-arrow: "\2192"; // Unicode character for right arrow
.reveal p {
font-weight: 300;
margin-top: 1.25em;
}
// lists
// Unordered lists
.reveal ul {
font-weight: 300;
padding-left: 16px;
li::marker {
color: mix($color_base, white, 70%);
}
}
.reveal ul ul {
list-style: none;
li:before {
content: $right-arrow;
color: mix($color_base, white, 60%);
display: inline-block;
width: 1em;
margin-left: -1em;
margin-right: 0.5em;
}
}
// Ordered lists
.reveal ol {
font-weight: 300;
padding-left: 16px;
li::marker {
color: $color_base;
}
}
.reveal ol ul {
list-style: none;
li:before {
content: $right-arrow;
color: mix($color_base, white, 60%);
display: inline-block;
width: 1em;
margin-left: -1em;
margin-right: 0.5em;
}
}