JeCabrera's picture
Upload 4 files
3fe53b9 verified
raw
history blame
589 Bytes
def get_custom_css():
return """
<style>
.stApp {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.main {
padding: 2rem;
}
.stMarkdown {
color: #2c3e50;
}
.stButton>button {
background-color: #3498db;
color: white;
border-radius: 5px;
padding: 0.5rem 2rem;
transition: all 0.3s ease;
}
.stButton>button:hover {
background-color: #2980b9;
transform: translateY(-2px);
}
.stTextInput>div>div>input {
border-radius: 5px;
}
</style>
"""