summaryrefslogtreecommitdiff
path: root/static/.popup.scss
blob: 4bc46507516c0d4652fb8793880694ee84477988 (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: 10px;
  text-align: center;
  animation-fill-mode: forwards;
}

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

  33% {
    opacity: 100%;
  }

  100% {
    opacity: 0;
  }
}