aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/less/buttons.less
blob: 0d27a978735b7a14ac0720bde3bfb82501a0c105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Outline button for use within the docs
.btn-outline {
  color: #563d7c;
  background-color: transparent;
  border-color: #563d7c;

  &:hover,
  &:focus,
  &:active {
    color: #fff;
    background-color: #563d7c;
    border-color: #563d7c;
  }
}

// Inverted outline button (white on dark)
.btn-outline-inverse {
  color: #fff;
  background-color: transparent;
  border-color: #cdbfe3;

  &:hover,
  &:focus,
  &:active {
    color: #563d7c;
    text-shadow: none;
    background-color: #fff;
    border-color: #fff;
  }
}