MilanM commited on
Commit
bc2ff7e
·
verified ·
1 Parent(s): ad08bd6

Create custom_header_font.css

Browse files
Files changed (1) hide show
  1. custom_header_font.css +12 -0
custom_header_font.css ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
2
+
3
+ :root {
4
+ --marimo-heading-font: 'IBM+Plex+Sans', sans-serif;
5
+ --marimo-monospace-font: 'IBM+Plex+Sans', sans-serif;
6
+ }
7
+
8
+ /* Increase paragraph font size and change color */
9
+ .paragraph {
10
+ font-size: 1.2rem;
11
+ color: light-dark(navy, pink);
12
+ }