Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* style.css */
|
2 |
+
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@400;700&family=Hind+Madurai:wght@400;700&display=swap');
|
3 |
+
|
4 |
+
/* Apply Tamil font to specific elements */
|
5 |
+
body, .stTextArea>label, .stSlider>label, .stButton>button, .stSelectbox>label {
|
6 |
+
font-family: 'Catamaran', 'Hind Madurai', sans-serif !important;
|
7 |
+
}
|
8 |
+
|
9 |
+
/* Custom styling */
|
10 |
+
.stTextInput input, .stTextArea textarea {
|
11 |
+
border: 2px solid #4CAF50 !important;
|
12 |
+
}
|
13 |
+
|
14 |
+
.stButton>button {
|
15 |
+
background-color: #4CAF50 !important;
|
16 |
+
color: white !important;
|
17 |
+
font-weight: bold;
|
18 |
+
}
|
19 |
+
|
20 |
+
.stSlider>div>div>div>div {
|
21 |
+
background-color: #4CAF50 !important;
|
22 |
+
}
|