Kabatubare
commited on
Commit
•
b099dd9
1
Parent(s):
c07da0e
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* style.css content for Pollack Inspired UI */
|
2 |
+
body {
|
3 |
+
background-color: #f0f0f0;
|
4 |
+
font-family: 'Arial', sans-serif;
|
5 |
+
}
|
6 |
+
|
7 |
+
.gradio-app {
|
8 |
+
max-width: 1200px;
|
9 |
+
margin: auto;
|
10 |
+
padding: 20px;
|
11 |
+
background-color: #ffffff;
|
12 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
13 |
+
}
|
14 |
+
|
15 |
+
.button, .input, .output {
|
16 |
+
margin-bottom: 20px;
|
17 |
+
}
|
18 |
+
|
19 |
+
.label {
|
20 |
+
font-weight: bold;
|
21 |
+
margin-bottom: 5px;
|
22 |
+
}
|
23 |
+
|
24 |
+
.tab {
|
25 |
+
background-color: #e0e0e0;
|
26 |
+
border: none;
|
27 |
+
padding: 10px 20px;
|
28 |
+
cursor: pointer;
|
29 |
+
font-size: 16px;
|
30 |
+
}
|
31 |
+
|
32 |
+
.tab.active {
|
33 |
+
background-color: #c0c0c0;
|
34 |
+
}
|
35 |
+
|
36 |
+
.row {
|
37 |
+
display: flex;
|
38 |
+
flex-wrap: wrap;
|
39 |
+
gap: 20px;
|
40 |
+
margin-bottom: 20px;
|
41 |
+
}
|
42 |
+
|
43 |
+
.image {
|
44 |
+
border-radius: 5px;
|
45 |
+
max-width: 100%;
|
46 |
+
height: auto;
|
47 |
+
}
|