0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-08 01:47:24 +01:00
Bootstrap/assets/scss/_buttons.scss

30 lines
487 B
SCSS
Raw Normal View History

// Buttons
//
// Custom buttons for the docs.
.btn-bd-primary {
2015-08-17 03:11:10 +02:00
font-weight: 500;
color: $bd-purple-bright;
border-color: $bd-purple-bright;
&:hover,
&:active {
color: #fff;
2016-01-04 03:10:34 +01:00
background-color: $bd-purple-bright;
border-color: $bd-purple-bright;
}
}
.btn-bd-download {
font-weight: 500;
color: $bd-download;
border-color: $bd-download;
&:hover,
&:active {
color: $bd-dark;
background-color: $bd-download;
border-color: $bd-download;
}
}