-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
34 lines (28 loc) · 924 Bytes
/
custom.css
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
/* Custom CSS for theming marimo notebooks */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
--marimo-heading-font: 'Noto Serif', 'sans-serif';
--marimo-text-font: 'Noto Sans', 'sans-serif';
--marimo-monospace-font: 'Noto Sans Mono', 'monospace';
}
/* Increase paragraph font size and change color */
/* .paragraph {
font-size: 1.2rem;
color: light-dark(rgb(28, 43, 72), rgb(194, 213, 244));
}
.h1 {
font-weight: bold;
}
.h2 {
font-weight: lighter;
}
.h3 {
font-size: smaller;
font-weight: bold;
}
.h4 {
font-size: smaller;
font-weight: lighter;
} */