Spaces:
Sleeping
Sleeping
initial commit
Browse files
reels.css
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#reels-container {
|
| 2 |
+
display: flex;
|
| 3 |
+
gap: 1rem;
|
| 4 |
+
margin-bottom: 1rem;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
#reels-container .gradio-textbox {
|
| 8 |
+
text-align: center;
|
| 9 |
+
border: 4px solid #f59e0b; /* Amber color */
|
| 10 |
+
border-radius: 12px;
|
| 11 |
+
background-color: #fef3c7; /* Light amber background */
|
| 12 |
+
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
#reels-container .gradio-textbox input {
|
| 16 |
+
font-size: 1.25rem !important;
|
| 17 |
+
font-weight: bold;
|
| 18 |
+
color: #b45309; /* Darker amber text */
|
| 19 |
+
text-align: center;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
#pull-button {
|
| 23 |
+
font-size: 1.5rem !important;
|
| 24 |
+
font-weight: bold;
|
| 25 |
+
padding: 1rem !important;
|
| 26 |
+
box-shadow: 0 8px 15px rgba(0,0,0,0.2);
|
| 27 |
+
transition: all 0.2s ease-in-out;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
#pull-button:hover {
|
| 31 |
+
transform: translateY(-2px);
|
| 32 |
+
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
|
| 33 |
+
}
|