Cytoland / style.css
edyoshikun's picture
changing submission button for intutive usage
e805cf3
/* Minimal custom styling, avoiding explicit background and text colors */
/* General block styling */
.title-block, .description-block, .article-block {
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
text-align: center;
}
/* Title block */
.title-block {
font-size: 28px;
font-weight: bold;
/* No color or background settings to let Gradio handle the theme */
}
/* Description block */
.description-block {
font-size: 18px;
/* No color or background settings */
}
/* Article block */
.article-block {
font-size: 16px;
margin-top: 30px;
/* No color or background settings */
}
/* Prominent Submit Button */
.submit-button {
background-color: #007bff !important;
color: white !important;
font-size: 18px !important;
font-weight: bold !important;
padding: 12px 24px !important;
border-radius: 8px !important;
margin: 15px auto !important;
display: block !important;
transition: background-color 0.3s ease !important;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}
.submit-button:hover {
background-color: #0056b3 !important;
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
}