request-generator / reels.css
HMC83's picture
initial commit
2a41a49 verified
raw
history blame
778 Bytes
#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);
}