Heroes & banners
Call to Action Banner
A full width accent colored banner with a short prompt and a white button, meant to sit near the bottom of a page.
<section class="ctabanner-banner">
<p class="ctabanner-text">Ready to write your first line of code today?</p>
<button class="ctabanner-btn">Start Free</button>
</section>
.ctabanner-banner {
box-sizing: border-box;
width: 100%;
max-width: 720px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 16px;
background-color: #3b82f6;
border-radius: 16px;
padding: 28px 32px;
font-family: system-ui, -apple-system, sans-serif;
}
.ctabanner-text {
margin: 0;
color: #ffffff;
font-size: 18px;
font-weight: 700;
}
.ctabanner-btn {
background-color: #ffffff;
color: #3b82f6;
border: none;
padding: 12px 26px;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: transform 0.15s ease;
}
.ctabanner-btn:hover {
transform: scale(1.05);
}