summaryrefslogtreecommitdiffstats
path: root/src/rocksdb/docs/_sass/_buttons.scss
blob: a0371618fc416bd8de59b83de8eaacfdc15d16ee (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.button {
  border: 1px solid $primary-bg;
  border-radius: 3px;
  color: $primary-bg;
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2em;
  padding: 10px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;

  &:hover {
    background: $primary-bg;
    color: $primary-overlay;
  }
}

.homeContainer {
  .button {
    border-color: $primary-overlay;
    border-width: 1px;
    color: $primary-overlay;

    &:hover {
      background: $primary-overlay;
      color: $primary-bg;
    }
  }
}

.blockButton {
  display: block;
}

.edit-page-link {
    float: right;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    opacity: 0.6;
    transition: opacity 0.5s;
}

.edit-page-link:hover {
  opacity: 1;
}