artificialguybr commited on
Commit
b379960
1 Parent(s): 7e4a7d4

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +34 -0
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
+ }