43 lines
818 B
CSS
43 lines
818 B
CSS
/* Buttons */
|
|
.cta-button {
|
|
display: inline-block;
|
|
padding: 1rem 2rem;
|
|
background-color: var(--accent-color);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
transition: var(--transition);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.cta-button:focus {
|
|
outline: 2px solid var(--text-color);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.submit-button {
|
|
padding: 1rem;
|
|
background-color: var(--accent-color);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
position: relative;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.submit-button:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.submit-button:disabled {
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|