Update custom.css
Browse files- custom.css +11 -2
custom.css
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
/* custom.css for marimo notebook */
|
2 |
|
3 |
/* Set base font to Garamond for the entire document */
|
4 |
-
body, #marimo-app * {
|
5 |
font-family: 'Garamond', 'EB Garamond', serif !important;
|
6 |
}
|
7 |
|
8 |
-
|
9 |
/* Style for why-it-works and resources accordions */
|
10 |
.technique-why-it-works,
|
11 |
.technique-resources {
|
@@ -68,4 +67,14 @@ body, #marimo-app * {
|
|
68 |
.marimo-accordion [data-state="open"] button {
|
69 |
color: #000000 !important;
|
70 |
background-color: #fff0f0 !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
}
|
|
|
1 |
/* custom.css for marimo notebook */
|
2 |
|
3 |
/* Set base font to Garamond for the entire document */
|
4 |
+
body, #marimo-app *, .marimo-output *, .marimo-markdown *, .marimo-ui-element * {
|
5 |
font-family: 'Garamond', 'EB Garamond', serif !important;
|
6 |
}
|
7 |
|
|
|
8 |
/* Style for why-it-works and resources accordions */
|
9 |
.technique-why-it-works,
|
10 |
.technique-resources {
|
|
|
67 |
.marimo-accordion [data-state="open"] button {
|
68 |
color: #000000 !important;
|
69 |
background-color: #fff0f0 !important;
|
70 |
+
}
|
71 |
+
|
72 |
+
/* Additional selectors to ensure Garamond is applied everywhere */
|
73 |
+
input, textarea, button, select, label, a, h1, h2, h3, h4, h5, h6 {
|
74 |
+
font-family: 'Garamond', 'EB Garamond', serif !important;
|
75 |
+
}
|
76 |
+
|
77 |
+
/* Force Garamond on any dynamically created elements */
|
78 |
+
[class*="marimo"], [id*="marimo"], [class*="mui"], .MuiTypography-root {
|
79 |
+
font-family: 'Garamond', 'EB Garamond', serif !important;
|
80 |
}
|