Spaces:
Running
Running
Upload styles.html
Browse files- styles.html +68 -0
styles.html
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<style>
|
2 |
+
/* General form styling */
|
3 |
+
.stForm {
|
4 |
+
background-color: #f9f9f9;
|
5 |
+
padding: 20px;
|
6 |
+
border-radius: 10px;
|
7 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
8 |
+
}
|
9 |
+
|
10 |
+
/* Label styling */
|
11 |
+
.stForm label {
|
12 |
+
font-weight: bold;
|
13 |
+
color: #333;
|
14 |
+
}
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
/* Button styling */
|
20 |
+
.stFormSubmitButton button {
|
21 |
+
background-color: #4CAF50;
|
22 |
+
color: white;
|
23 |
+
padding: 10px 20px;
|
24 |
+
border: none;
|
25 |
+
border-radius: 5px;
|
26 |
+
cursor: pointer;
|
27 |
+
font-size: 16px;
|
28 |
+
}
|
29 |
+
|
30 |
+
.stFormSubmitButton button:hover {
|
31 |
+
background-color: #45a049;
|
32 |
+
}
|
33 |
+
|
34 |
+
/* Column styling */
|
35 |
+
.st-emotion-cache-ml2xh6, .st-emotion-cache-12w0qpk {
|
36 |
+
padding: 0 10px;
|
37 |
+
}
|
38 |
+
|
39 |
+
/* Header styling */
|
40 |
+
.stTitle {
|
41 |
+
font-size: 2.5em;
|
42 |
+
font-weight: 700;
|
43 |
+
color: #4CAF50;
|
44 |
+
text-align: left;
|
45 |
+
margin-bottom: 10px;
|
46 |
+
text-decoration: underline;
|
47 |
+
text-decoration-color: #4CAF50;
|
48 |
+
transition: color 0.3s ease;
|
49 |
+
}
|
50 |
+
|
51 |
+
.stTitle:hover {
|
52 |
+
color: #388E3C;
|
53 |
+
}
|
54 |
+
|
55 |
+
/* Subheader styling */
|
56 |
+
.stSubheader {
|
57 |
+
font-size: 1.5em;
|
58 |
+
font-weight: 400;
|
59 |
+
color: #555;
|
60 |
+
text-align: left;
|
61 |
+
margin-bottom: 20px;
|
62 |
+
transition: color 0.3s ease;
|
63 |
+
}
|
64 |
+
|
65 |
+
.stSubheader:hover {
|
66 |
+
color: #333;
|
67 |
+
}
|
68 |
+
</style>
|