summaryrefslogtreecommitdiff
path: root/themes/CodeIT/assets/css/_partial/_fixed-button.scss
blob: 3a48bca246323b0ac4aa05e9630604a0928ac1c6 (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
48
49
50
#fixed-buttons {
  display: none;
}

.fixed-button {
  display: none;
  z-index: 100;
  position: fixed;
  right: 1.5rem;
  font-size: 1rem;
  line-height: 1.3rem;
  padding: 0.6rem 0.6rem;
  color: $global-font-secondary-color;
  background: $header-background-color;
  @include border-radius(2rem);
  @include transition(color 0.4s ease);

  @include blur;

  &:hover,
  &:active {
    color: $global-font-color;
    cursor: pointer;
  }

  &:active,
  &:focus,
  &:hover {
    outline: none;
  }

  [theme="dark"] & {
    color: $global-font-secondary-color-dark;
    background: $header-background-color-dark;

    &:hover,
    &:active {
      color: $global-font-color-dark;
    }
  }
}

#back-to-top {
  display: block;
  bottom: 1.5rem;
}

#view-comments {
  bottom: 4.5rem;
}