liuxiaolong
2022-06-28 37714b1093c04061e636e5b1d27179652e671c0a
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
31
32
33
34
35
36
37
.button {
  background: $button-background;
  border: 1px solid $button-font-color;
  box-shadow: 3px 4px 0 rgba(0,0,0,0.1);
  color: $button-font-color;
  display: inline-block;
  font-family: $button-font-family;
  font-size: $button-font-size;
  font-weight: $button-font-weight;
  letter-spacing: 1px;
  margin-bottom: 4px;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
 
  &:hover,
  &:active,
  &:focus {
    text-decoration: none;
  }
 
  &:hover {
    background: $button-font-color;
    border: 1px solid $button-font-color;
    color: $button-background;
  }
 
  &.primary {
    background: $button-primary-background;
    border: 1px solid darken($button-primary-background, 5%);
    color: $button-primary-font-color;
 
    &:hover {
      background: lighten($button-primary-background, 5%);
    }
  }
}