« get me outta code hell

neb-anim.css « css « static « neb « theme - wiki-blog - Unnamed repository; edit this file 'description' to name the repository.
summary refs log tree commit diff
path: root/theme/neb/static/css/neb-anim.css
blob: 45de2fdb6d98fa2d6f4c38de7247ba917cefe0ed (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
@property --shine1 {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

@property --shine2 {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

@keyframes label-shine {
  from {
    --shine1: 0%;
    --shine2: 0%;
  }

  20% {
    --shine2: 0%;
  }

  80% {
    --shine1: 100%;
  }

  100% {
    --shine1: 100%;
    --shine2: 100%;
  }
}