Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,13 +1,50 @@
|
|
1 |
-
/* Custom styles for SentimentSpark */
|
2 |
body {
|
3 |
-
font-family:
|
4 |
-
background
|
5 |
color: #e0e0e0;
|
|
|
|
|
|
|
6 |
}
|
7 |
|
8 |
h1 {
|
9 |
-
font-
|
10 |
color: #ffffff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
|
13 |
.table-dark {
|
@@ -18,24 +55,30 @@ h1 {
|
|
18 |
.table-dark th,
|
19 |
.table-dark td {
|
20 |
border-color: #444;
|
|
|
|
|
|
|
|
|
|
|
21 |
}
|
22 |
|
23 |
.table-dark tbody tr:hover {
|
24 |
-
background-color: #
|
|
|
25 |
}
|
26 |
|
27 |
-
.
|
28 |
-
|
29 |
-
|
30 |
-
color: #e0e0e0;
|
31 |
}
|
32 |
|
33 |
-
|
34 |
-
background-color: #
|
35 |
-
border-
|
36 |
-
|
37 |
}
|
38 |
|
39 |
-
|
40 |
-
|
|
|
41 |
}
|
|
|
|
|
1 |
body {
|
2 |
+
font-family: 'Roboto', sans-serif;
|
3 |
+
background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
|
4 |
color: #e0e0e0;
|
5 |
+
min-height: 100vh;
|
6 |
+
display: flex;
|
7 |
+
flex-direction: column;
|
8 |
}
|
9 |
|
10 |
h1 {
|
11 |
+
font-family: 'Orbitron', sans-serif;
|
12 |
color: #ffffff;
|
13 |
+
text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
|
14 |
+
}
|
15 |
+
|
16 |
+
.hero {
|
17 |
+
background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
|
18 |
+
border-bottom: 2px solid #444;
|
19 |
+
animation: fadeIn 1s ease-in;
|
20 |
+
}
|
21 |
+
|
22 |
+
.lead {
|
23 |
+
color: #cccccc;
|
24 |
+
font-size: 1.25rem;
|
25 |
+
}
|
26 |
+
|
27 |
+
.card {
|
28 |
+
background-color: #2a2a2a;
|
29 |
+
border: 1px solid #444;
|
30 |
+
transition: transform 0.3s ease;
|
31 |
+
}
|
32 |
+
|
33 |
+
.card:hover {
|
34 |
+
transform: translateY(-5px);
|
35 |
+
}
|
36 |
+
|
37 |
+
.form-select {
|
38 |
+
background-color: #3a3a3a;
|
39 |
+
border-color: #555;
|
40 |
+
color: #e0e0e0;
|
41 |
+
transition: background-color 0.3s ease;
|
42 |
+
}
|
43 |
+
|
44 |
+
.form-select:focus {
|
45 |
+
background-color: #3a3a3a;
|
46 |
+
border-color: #777;
|
47 |
+
box-shadow: 0 0 0 0.2rem rgba(100, 100, 100, 0.5);
|
48 |
}
|
49 |
|
50 |
.table-dark {
|
|
|
55 |
.table-dark th,
|
56 |
.table-dark td {
|
57 |
border-color: #444;
|
58 |
+
padding: 12px;
|
59 |
+
}
|
60 |
+
|
61 |
+
.table-dark tbody tr {
|
62 |
+
transition: background-color 0.3s ease, transform 0.2s ease;
|
63 |
}
|
64 |
|
65 |
.table-dark tbody tr:hover {
|
66 |
+
background-color: #4a4a4a;
|
67 |
+
transform: scale(1.02);
|
68 |
}
|
69 |
|
70 |
+
.container {
|
71 |
+
max-width: 1200px;
|
72 |
+
flex: 1;
|
|
|
73 |
}
|
74 |
|
75 |
+
footer {
|
76 |
+
background-color: #1a1a1a;
|
77 |
+
border-top: 1px solid #444;
|
78 |
+
color: #999;
|
79 |
}
|
80 |
|
81 |
+
@keyframes fadeIn {
|
82 |
+
from { opacity: 0; }
|
83 |
+
to { opacity: 1; }
|
84 |
}
|