File size: 350 Bytes
40e481e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/* custom.css */
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
}
.gradio_content {
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.gradio_button {
background: linear-gradient(to right, #6A82FB, #FC5C7D);
transition: transform 0.2s;
}
.gradio_button:hover {
transform: scale(1.05);
} |