siddhartharya commited on
Commit
1d5ad89
·
verified ·
1 Parent(s): 6952cd8

Create app.css

Browse files
Files changed (1) hide show
  1. app.css +37 -0
app.css ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* app.css */
2
+
3
+ body {
4
+ background-color: #f0f2f5;
5
+ }
6
+
7
+ .gradio-container {
8
+ font-family: Arial, sans-serif;
9
+ }
10
+
11
+ .gr-button {
12
+ background-color: #4CAF50;
13
+ color: white;
14
+ }
15
+
16
+ .dataframe th {
17
+ background-color: #4CAF50;
18
+ color: white;
19
+ }
20
+
21
+ .dataframe td, .dataframe th {
22
+ padding: 8px;
23
+ text-align: left;
24
+ }
25
+
26
+ .dataframe tr:nth-child(even) {
27
+ background-color: #f2f2f2;
28
+ }
29
+
30
+ .dataframe tr:hover {
31
+ background-color: #ddd;
32
+ }
33
+
34
+ /* Highlight dead links */
35
+ .dead-link {
36
+ background-color: #ffcccc !important;
37
+ }