bootstrap/docs/assets/less/buttons.less

31 lines
527 B
Plaintext
Raw Normal View History

2017-07-03 06:14:53 +08:00
// Outline button for use within the docs
2017-07-03 06:09:46 +08:00
.btn-outline {
color: #563d7c;
background-color: transparent;
border-color: #563d7c;
2017-07-03 06:14:53 +08:00
&:hover,
&:focus,
&:active {
color: #fff;
background-color: #563d7c;
border-color: #563d7c;
}
2017-07-03 06:09:46 +08:00
}
2017-07-03 06:14:53 +08:00
// Inverted outline button (white on dark)
2017-07-03 06:09:46 +08:00
.btn-outline-inverse {
color: #fff;
background-color: transparent;
border-color: #cdbfe3;
2017-07-03 06:14:53 +08:00
&:hover,
&:focus,
&:active {
color: #563d7c;
text-shadow: none;
background-color: #fff;
border-color: #fff;
}
2017-07-03 06:09:46 +08:00
}