Upload 2 files
Browse files- base_variables.py +10 -0
- custom_header_font.css +13 -0
base_variables.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
wx_platform_url = "https://api.dataplatform.cloud.ibm.com"
|
2 |
+
|
3 |
+
wx_regions = {
|
4 |
+
"US": "https://us-south.ml.cloud.ibm.com",
|
5 |
+
"EU": "https://eu-de.ml.cloud.ibm.com",
|
6 |
+
"GB": "https://eu-gb.ml.cloud.ibm.com",
|
7 |
+
"JP": "https://jp-tok.ml.cloud.ibm.com",
|
8 |
+
"AU": "https://au-syd.ml.cloud.ibm.com",
|
9 |
+
"CA": "https://ca-tor.ml.cloud.ibm.com"
|
10 |
+
}
|
custom_header_font.css
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
--marimo-text-font: 'IBM+Plex+Sans', sans-serif;
|
7 |
+
}
|
8 |
+
|
9 |
+
/* Increase paragraph font size and change color */
|
10 |
+
.paragraph {
|
11 |
+
font-size: 1.2rem;
|
12 |
+
color: light-dark(navy, pink);
|
13 |
+
}
|