Buttons
Ghost Outline Button
A transparent button with a colored border that fills in with the accent color when hovered.
<button class="btnghost-btn">Learn More</button>
.btnghost-btn {
font-family: system-ui, -apple-system, sans-serif;
background-color: transparent;
color: #3b82f6;
border: 2px solid #3b82f6;
padding: 10px 26px;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.2s ease, color 0.2s ease;
}
.btnghost-btn:hover {
background-color: #3b82f6;
color: #ffffff;
}
.btnghost-btn:active {
background-color: #2f6fe0;
border-color: #2f6fe0;
}