funky-framadate-front/src/styles/partials/_buttons.scss

67 lines
718 B
SCSS
Raw Normal View History

2021-12-16 12:21:24 +01:00
.outlined {
&:focus {
2022-03-09 22:41:52 +01:00
outline: #6359cf;
2021-12-16 12:21:24 +01:00
outline-style: solid;
}
}
a {
@extend .outlined;
}
2020-04-21 10:50:26 +02:00
button,
2021-12-16 12:21:24 +01:00
.btn {
@extend .outlined;
2020-04-21 10:50:26 +02:00
@extend .button;
}
.btn--full {
@extend .is-block;
}
button {
&.is-white {
&:hover {
background: $secondary_color;
color: $white;
}
}
2022-03-09 22:41:52 +01:00
&:hover {
outline-color: cadetblue;
}
}
.is-success {
background: #128149;
color: #fff;
}
.is-primary {
background: #6359cf;
color: #fff;
}
.is-disabled {
background: #767486;
color: #fff;
}
2022-03-09 22:41:52 +01:00
.is-secondary {
background: #fff;
color: #6359cf;
border-color: #6359cf;
}
.btn-primary {
2020-04-21 10:50:26 +02:00
@extend .is-primary;
}
.is-warning {
2020-04-21 10:50:26 +02:00
@extend .is-warning;
}
.btn--info {
@extend .is-info;
}
.btn--danger {
@extend .is-danger;
}