ghostai1 commited on
Commit
3ec6d61
·
verified ·
1 Parent(s): 04f58a5

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +30 -17
style.css CHANGED
@@ -1,28 +1,41 @@
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
4
  }
5
 
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
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
+ }