31 lines
488 B
CSS
31 lines
488 B
CSS
.button {
|
|
display: inline-block;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 6px;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
width: fit-content;
|
|
}
|
|
|
|
.button-primary {
|
|
background: var(--primary);
|
|
color: white;
|
|
}
|
|
|
|
.button-primary:hover {
|
|
background: var(--secondary);
|
|
}
|
|
|
|
.button-light {
|
|
background: white;
|
|
color: var(--primary);
|
|
}
|
|
|
|
.button-light:hover {
|
|
background: var(--light);
|
|
}
|
|
|
|
.logo:hover{
|
|
cursor: pointer;
|
|
} |