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