Spaces:
Running
Running
hamaadayubkhan
commited on
Commit
•
9d41e26
1
Parent(s):
876d601
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* General Styles */
|
2 |
+
body {
|
3 |
+
font-family: Arial, sans-serif;
|
4 |
+
background-color: #f4f4f4;
|
5 |
+
color: #333;
|
6 |
+
}
|
7 |
+
|
8 |
+
/* Header */
|
9 |
+
h1 {
|
10 |
+
text-align: center;
|
11 |
+
color: #4CAF50;
|
12 |
+
}
|
13 |
+
|
14 |
+
/* Tab Styles */
|
15 |
+
.gradio-tab {
|
16 |
+
background-color: #fff;
|
17 |
+
border-radius: 8px;
|
18 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
19 |
+
padding: 20px;
|
20 |
+
margin: 20px 0;
|
21 |
+
}
|
22 |
+
|
23 |
+
/* Input Elements */
|
24 |
+
.gradio-textbox,
|
25 |
+
.gradio-dropdown {
|
26 |
+
width: 100%;
|
27 |
+
padding: 10px;
|
28 |
+
margin: 10px 0;
|
29 |
+
border: 1px solid #ccc;
|
30 |
+
border-radius: 4px;
|
31 |
+
}
|
32 |
+
|
33 |
+
/* Button Styles */
|
34 |
+
.gr-button {
|
35 |
+
background-color: #4CAF50;
|
36 |
+
color: white;
|
37 |
+
border: none;
|
38 |
+
padding: 10px 15px;
|
39 |
+
border-radius: 4px;
|
40 |
+
cursor: pointer;
|
41 |
+
}
|
42 |
+
|
43 |
+
.gr-button:hover {
|
44 |
+
background-color: #45a049;
|
45 |
+
}
|
46 |
+
|
47 |
+
/* Footer */
|
48 |
+
footer {
|
49 |
+
text-align: center;
|
50 |
+
margin-top: 20px;
|
51 |
+
font-size: 0.9em;
|
52 |
+
color: #666;
|
53 |
+
}
|
54 |
+
|
55 |
+
/* Markdown Styles */
|
56 |
+
.markdown {
|
57 |
+
padding: 20px;
|
58 |
+
border-radius: 8px;
|
59 |
+
background-color: #fff;
|
60 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
61 |
+
}
|