Spaces:
Running
on
Zero
Running
on
Zero
artificialguybr
commited on
Commit
•
9aa0dd0
1
Parent(s):
fc7753b
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
h1 {
|
2 |
+
text-align: center;
|
3 |
+
display: block;
|
4 |
+
}
|
5 |
+
|
6 |
+
#duplicate-button {
|
7 |
+
margin: auto;
|
8 |
+
color: #fff;
|
9 |
+
background: #1565c0;
|
10 |
+
border-radius: 100vh;
|
11 |
+
}
|
12 |
+
|
13 |
+
.gradio-container {
|
14 |
+
max-width: 730px !important;
|
15 |
+
margin: auto;
|
16 |
+
padding-top: 1.5rem;
|
17 |
+
}
|
18 |
+
|
19 |
+
#title-container {
|
20 |
+
display: flex;
|
21 |
+
justify-content: center;
|
22 |
+
align-items: center;
|
23 |
+
height: 100vh; /* Adjust this value to position the title vertically */
|
24 |
+
}
|
25 |
+
|
26 |
+
#title {
|
27 |
+
font-size: 3em;
|
28 |
+
text-align: center;
|
29 |
+
background: transparent;
|
30 |
+
}
|
31 |
+
|
32 |
+
#subtitle {
|
33 |
+
text-align: center;
|
34 |
+
}
|