Spaces:
Sleeping
Sleeping
Update static/style.css
Browse files- static/style.css +25 -0
static/style.css
CHANGED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* New Rule */
|
2 |
+
#loader img {
|
3 |
+
width: auto;
|
4 |
+
height: 100px; /* Example size for gif */
|
5 |
+
margin: 0 auto;
|
6 |
+
display: block;
|
7 |
+
}
|
8 |
+
|
9 |
+
/* Update existing rule */
|
10 |
+
.hidden {
|
11 |
+
visibility: hidden;
|
12 |
+
}
|
13 |
+
|
14 |
+
/* Apply the hidden class initially */
|
15 |
+
#text-gen-container {
|
16 |
+
opacity: 0;
|
17 |
+
transition: opacity 0.3s ease-in-out;
|
18 |
+
}
|
19 |
+
|
20 |
+
#loader {
|
21 |
+
display: flex;
|
22 |
+
justify-content: center;
|
23 |
+
align-items: center;
|
24 |
+
min-height: calc(100vh - 10rem); /* Minimum height excluding header padding */
|
25 |
+
}
|