Spaces:
Sleeping
Sleeping
Upload custom.css
Browse files- custom.css +82 -0
custom.css
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&family=Roboto+Mono&display=swap');
|
| 2 |
+
|
| 3 |
+
.stApp {
|
| 4 |
+
background-color: #1C1C1C;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
.profit {
|
| 8 |
+
color: #00C853 !important;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
.loss {
|
| 12 |
+
color: #FF3D00 !important;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
.chart-container {
|
| 16 |
+
background-color: #252525;
|
| 17 |
+
border-radius: 5px;
|
| 18 |
+
padding: 10px;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.metrics-container {
|
| 22 |
+
background-color: #252525;
|
| 23 |
+
border-radius: 5px;
|
| 24 |
+
padding: 15px;
|
| 25 |
+
margin: 10px 0;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
.pattern-container {
|
| 29 |
+
background-color: #252525;
|
| 30 |
+
border-radius: 5px;
|
| 31 |
+
padding: 15px;
|
| 32 |
+
margin: 10px 0;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.pattern-container h4 {
|
| 36 |
+
color: #2962FF;
|
| 37 |
+
margin: 0;
|
| 38 |
+
padding-bottom: 5px;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
.pattern-container p {
|
| 42 |
+
margin: 0;
|
| 43 |
+
padding-left: 15px;
|
| 44 |
+
font-size: 0.9em;
|
| 45 |
+
color: #E0E0E0;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
.prediction-container {
|
| 49 |
+
background-color: #252525;
|
| 50 |
+
border-radius: 5px;
|
| 51 |
+
padding: 20px;
|
| 52 |
+
margin: 10px 0;
|
| 53 |
+
text-align: center;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
.prediction-container h3 {
|
| 57 |
+
margin: 0;
|
| 58 |
+
padding-bottom: 10px;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
.metric-container {
|
| 62 |
+
background-color: #252525;
|
| 63 |
+
border-radius: 5px;
|
| 64 |
+
padding: 15px;
|
| 65 |
+
margin: 10px 0;
|
| 66 |
+
text-align: center;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.metric-container h4 {
|
| 70 |
+
margin: 0;
|
| 71 |
+
padding-bottom: 5px;
|
| 72 |
+
color: #2962FF;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.metric-container p {
|
| 76 |
+
margin: 0;
|
| 77 |
+
font-size: 1.2em;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.stSelectbox {
|
| 81 |
+
background-color: #252525;
|
| 82 |
+
}
|