summaryrefslogtreecommitdiff
path: root/static/.popup.scss
blob: a3e9df683fa6c8f40ed85ce75a06f27a9a897649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.popup {
  animation-name: popup;
  animation-duration: 6s;
  animation-iteration-count: 1;
  position: fixed;
  bottom: 60px;
  text-align: center;
  animation-fill-mode: forwards;
}

@keyframes popup {
  0% {
    opacity: 100%;
  }

  33% {
    opacity: 100%;
  }

  100% {
    opacity: 0;
  }
}