-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.scss
More file actions
47 lines (40 loc) · 879 Bytes
/
styles.scss
File metadata and controls
47 lines (40 loc) · 879 Bytes
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
/*-- scss:defaults --*/
/* Fonts */
$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
$font-family-monospace: "SF Mono", Menlo, Monaco, monospace;
/*-- scss:rules --*/
/* Inline code - THE priority */
:not(pre) > code,
p code,
li code,
td code,
h1 code, h2 code, h3 code, h4 code {
background: #e8e8e8 !important;
color: #1a1a1a !important;
padding: 0.15em 0.4em !important;
border-radius: 4px !important;
font-size: 0.9em !important;
font-weight: 500 !important;
}
/* Code blocks */
pre {
background: #1e1e1e;
color: #d4d4d4;
padding: 1rem;
border-radius: 8px;
overflow-x: auto;
border-left: 3px solid #0071e3;
}
pre code {
background: transparent;
color: inherit;
padding: 0;
font-size: inherit;
font-weight: normal;
}
div.sourceCode {
margin: 1.5rem 0;
}
div.sourceCode pre {
margin: 0;
}