ESL Overlay közvetítésekhez
Fibinger Ádám
2020-06-19 2585d732dffb7df87babd32a4922835d8d142c8a
commit | author | age
f6ebbf 1 @keyframes grow {
2     from {
3         width: 0;
4     }
5     to {
6         width: 100%;
7     }
8 }
9
10 @keyframes fadeIn {
11     from { opacity: 0; display: none; }
12     to { opacity: 1; display: inline-block; }
13 }
14
15 .grow {
16     animation-name: grow;
17     animation-duration: 0.5s;
18 }
19
20 #stripe {
21     position: static;
22     width: 0;
23     margin: auto;
24     background: transparent url(/assets/stripe.png) no-repeat center center !important;
25 }
26 #stripe.final {
27     position: fixed;
28     width: 100%;
29 }
30
31 #stripe.hidecontent * {
32     display: none;
33     opacity: 0;
34 }
35
36 #stripe.showcontent * {
37     animation-name: fadeIn;
38     animation-duration: 0.5s;
39 }
40