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