0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00
Bootstrap/docs/assets/less/buttons.less

31 lines
527 B
Plaintext
Raw Normal View History

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