source: trip-planner-front/node_modules/primeng/resources/components/progressbar/progressbar.css@ bdd6491

Last change on this file since bdd6491 was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 2.1 KB
Line 
1.p-progressbar {
2 position: relative;
3 overflow: hidden;
4}
5
6.p-progressbar-determinate .p-progressbar-value {
7 height: 100%;
8 width: 0%;
9 position: absolute;
10 display: none;
11 border: 0 none;
12}
13
14.p-progressbar-determinate .p-progressbar-value-animate {
15 transition: width 1s ease-in-out;
16}
17
18.p-progressbar-determinate .p-progressbar-label {
19 text-align: center;
20 height: 100%;
21 width: 100%;
22 position: absolute;
23 font-weight: bold;
24}
25
26.p-progressbar-indeterminate .p-progressbar-value::before {
27 content: '';
28 position: absolute;
29 background-color: inherit;
30 top: 0;
31 left: 0;
32 bottom: 0;
33 will-change: left, right;
34 -webkit-animation: p-progressbar-indeterminate-anim 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
35 animation: p-progressbar-indeterminate-anim 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
36}
37
38.p-progressbar-indeterminate .p-progressbar-value::after {
39 content: '';
40 position: absolute;
41 background-color: inherit;
42 top: 0;
43 left: 0;
44 bottom: 0;
45 will-change: left, right;
46 -webkit-animation: p-progressbar-indeterminate-anim-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
47 animation: p-progressbar-indeterminate-anim-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
48 -webkit-animation-delay: 1.15s;
49 animation-delay: 1.15s;
50}
51
52@-webkit-keyframes p-progressbar-indeterminate-anim {
53 0% {
54 left: -35%;
55 right: 100%; }
56 60% {
57 left: 100%;
58 right: -90%; }
59 100% {
60 left: 100%;
61 right: -90%; }
62}
63@keyframes p-progressbar-indeterminate-anim {
64 0% {
65 left: -35%;
66 right: 100%; }
67 60% {
68 left: 100%;
69 right: -90%; }
70 100% {
71 left: 100%;
72 right: -90%; }
73}
74
75@-webkit-keyframes p-progressbar-indeterminate-anim-short {
76 0% {
77 left: -200%;
78 right: 100%; }
79 60% {
80 left: 107%;
81 right: -8%; }
82 100% {
83 left: 107%;
84 right: -8%; }
85}
86@keyframes p-progressbar-indeterminate-anim-short {
87 0% {
88 left: -200%;
89 right: 100%; }
90 60% {
91 left: 107%;
92 right: -8%; }
93 100% {
94 left: 107%;
95 right: -8%; }
96}
Note: See TracBrowser for help on using the repository browser.