-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (58 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
69 lines (58 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');
*{
font-family: 'Anta', sans-serif;
}
/* Main Page Title */
h1 {
font-size: 48px;
color: #6ab04c; /* Light green color */
text-align: center;
margin-bottom: 30px;
}
/* Sidebar Title */
h2 {
font-size: 30px;
color: #6ab04c; /* Light green color */
}
/* Sidebar Controls */
.stSidebar {
background-color: #f0f0f0;
padding: 20px;
border-radius: 10px;
}
/* Upload File Button */
.stFileUploader > div > div {
border-color: #5a98d7 !important;
border-radius: 5px;
background-color: #5a98d7 !important;
}
/* Interactive Controls */
.stWidget.stNumberInput > div > div {
border-color: #5a98d7 !important;
}
.stButton>button {
background-color: #5a98d7 !important;
color: white !important;
}
/* Subheader */
.stSubheader {
font-size: 24px;
color: #333;
}
/* Main Page Content */
.stContent {
padding: 20px;
}
/* Plotly Charts */
.stPlotlyChart {
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
/* Footer */
.stFooter {
font-size: 14px;
color: #777;
text-align: center;
margin-top: 30px;
}