Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,41 @@
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
h1 {
|
| 7 |
-
|
| 8 |
-
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
.
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
.
|
| 27 |
-
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Custom styles for SentimentSpark */
|
| 2 |
body {
|
| 3 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
| 4 |
+
background-color: #1a1a1a;
|
| 5 |
+
color: #e0e0e0;
|
| 6 |
}
|
| 7 |
|
| 8 |
h1 {
|
| 9 |
+
font-weight: 700;
|
| 10 |
+
color: #ffffff;
|
| 11 |
}
|
| 12 |
|
| 13 |
+
.table-dark {
|
| 14 |
+
background-color: #2a2a2a;
|
| 15 |
+
border-color: #444;
|
|
|
|
|
|
|
| 16 |
}
|
| 17 |
|
| 18 |
+
.table-dark th,
|
| 19 |
+
.table-dark td {
|
| 20 |
+
border-color: #444;
|
|
|
|
|
|
|
|
|
|
| 21 |
}
|
| 22 |
|
| 23 |
+
.table-dark tbody tr:hover {
|
| 24 |
+
background-color: #3a3a3a;
|
| 25 |
}
|
| 26 |
+
|
| 27 |
+
.form-select {
|
| 28 |
+
background-color: #2a2a2a;
|
| 29 |
+
border-color: #444;
|
| 30 |
+
color: #e0e0e0;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.form-select:focus {
|
| 34 |
+
background-color: #2a2a2a;
|
| 35 |
+
border-color: #666;
|
| 36 |
+
box-shadow: 0 0 0 0.2rem rgba(100, 100, 100, 0.5);
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.container {
|
| 40 |
+
max-width: 1200px;
|
| 41 |
+
}
|