generated from gitea_admin/default
39 lines
720 B
SCSS
39 lines
720 B
SCSS
@use 'colors' as *;
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
padding: .6rem 1.2rem;
|
|
border-radius: .4rem;
|
|
text-decoration: none;
|
|
transition: background-color 0.2s;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
}
|
|
.btn:hover {
|
|
background-color: $bleu_fonce;
|
|
}
|
|
.btn--primary {
|
|
background-color: $bleu_clair;
|
|
color: white;
|
|
}
|
|
.btn--primary:hover {
|
|
background-color: $bleu_fonce;
|
|
}
|
|
|
|
.btn--secondary {
|
|
background-color: $gris_clair;
|
|
color: $noir;
|
|
}
|
|
.btn--secondary:hover {
|
|
background-color: $gris_moyen;
|
|
}
|
|
|
|
.btn--outline {
|
|
border: 1px solid $bleu_clair;
|
|
color: $bleu_clair;
|
|
background: transparent;
|
|
}
|
|
.btn--outline:hover {
|
|
background-color: $bleu_clair;
|
|
color: white;
|
|
} |