mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-26 12:41:23 +01:00
16 lines
365 B
SCSS
16 lines
365 B
SCSS
.btn {
|
|
font-weight: $bold;
|
|
transition: $base-cubic-transition;
|
|
}
|
|
.btn-primary {
|
|
color: #fff !important;
|
|
user-select: none;
|
|
text-transform: uppercase;
|
|
border: 0;
|
|
background: $primary-color !important;
|
|
&:hover, &:focus, &:active, &.active {
|
|
outline: none;
|
|
color: #fff;
|
|
background: $primary-color-hover;
|
|
}
|
|
}
|