Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,2 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
| 3 |
+
}
|
| 4 |
+
|
| 5 |
+
.d-none {
|
| 6 |
+
display: none !important;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
/* Force uppercase on manual STG input visual */
|
| 10 |
+
#f_stgManual {
|
| 11 |
+
text-transform: uppercase;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
/* Make table rows feel clickable where appropriate */
|
| 15 |
+
#dataTable tbody tr {
|
| 16 |
+
transition: background-color 0.2s ease;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.card-header {
|
| 20 |
+
border-bottom: 2px solid #ffc107;
|
| 21 |
+
}
|