mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
30.37.2020 3181d379468e9c3d520da29b3e6511441af053fd
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
.float-container {
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  position: fixed;
  font-size: 1.6em;
  a {
    display: block;
    text-align: center;
    width: 3.0rem;
    height: 3.0rem;
    color: $alt-fg-color;
    background-color: $alt-bg-color;
    font-size: 2.0rem;
    border-radius: 0.5rem;
    opacity: 50%;
    transition: all .25s ease-in;
    &:hover, &:focus {
      color: $link-color;
      opacity: 100%;
      @media only screen and (max-width : 768px) {
        color: $alt-fg-color;
        opacity: 50%;
      }
    }
  }
}