Test-H2 / css_styles.py
mjolnir1122's picture
Create css_styles.py
18e8985 verified
raw
history blame contribute delete
545 Bytes
global_css = """
<style>
.hero {
text-align: center;
padding: 50px;
background: linear-gradient(135deg, #0F9D58, #1E88E5);
color: white;
border-radius: 10px;
}
.cta-button {
background-color: #1E88E5;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
}
.cta-section {
text-align: center;
padding: 30px;
background: #0F9D58;
color: white;
border-radius: 10px;
}
</style>
"""