1-
2- /*The osf will ask for this file. It is never actually linked to anything specific in MFR.
3- This CSS was stripped out of base.css from the osf-style repo.
4- */
5-
6- . ball-pulse > div : nth-child ( 0 ) {
7- -webkit-animation : scale 0.75 s -0.36 s infinite cubic-bezier ( 0.2 , 0.68 , 0.18 , 1.08 ) ;
8- animation : scale 0.75 s -0.36 s infinite cubic-bezier ( 0.2 , 0.68 , 0.18 , 1.08 ) ;
1+ . mfr-logo-spin {
2+ -webkit-animation : mfr-spin 3 s infinite linear , mfr-opacity 3 s infinite linear;
3+ -moz-animation : mfr-spin 3 s infinite linear mfr-opacity 3 s infinite linear;
4+ animation : mfr-spin 3 s infinite linear , mfr-opacity 3 s infinite linear;
5+ position : absolute;
6+ top : 0 ;
7+ left : 50 % ;
8+ z-index : -1 ;
99}
10- .ball-pulse > div : nth-child (1 ) {
11- -webkit-animation : scale 0.75s -0.24s infinite cubic-bezier (0.2 , 0.68 , 0.18 , 1.08 );
12- animation : scale 0.75s -0.24s infinite cubic-bezier (0.2 , 0.68 , 0.18 , 1.08 );
10+ @-moz-keyframes mfr-spin {
11+ from {
12+ -moz-transform : rotate (0deg );
13+ }
14+ to {
15+ -moz-transform : rotate (360deg );
16+ }
1317}
14- .ball-pulse > div : nth-child (2 ) {
15- -webkit-animation : scale 0.75s -0.12s infinite cubic-bezier (0.2 , 0.68 , 0.18 , 1.08 );
16- animation : scale 0.75s -0.12s infinite cubic-bezier (0.2 , 0.68 , 0.18 , 1.08 );
18+ @-webkit-keyframes mfr-spin {
19+ from {
20+ -webkit-transform : rotate (0deg );
21+ }
22+ to {
23+ -webkit-transform : rotate (360deg );
24+ }
1725}
18- .ball-pulse > div : nth-child (3 ) {
19- -webkit-animation : scale 0.75s 0s infinite cubic-bezier (0.2 , 0.68 , 0.18 , 1.08 );
20- animation : scale 0.75s 0s infinite cubic-bezier (0.2 , 0.68 , 0.18 , 1.08 );
26+ @keyframes mfr-spin {
27+ from {
28+ -webkit-transform : rotate (0deg );
29+ transform : rotate (0deg );
30+ }
31+ to {
32+ -webkit-transform : rotate (360deg );
33+ transform : rotate (360deg );
34+ }
2135}
22- .ball-pulse > div {
23- background-color : # fff ;
24- width : 15px ;
25- height : 15px ;
26- border-radius : 100% ;
27- margin : 2px ;
28- -webkit-animation-fill-mode : both;
29- animation-fill-mode : both;
30- display : inline-block;
36+ @-moz-keyframes mfr-opacity {
37+ 0% {
38+ opacity : 0.1
39+ }
40+ 50% {
41+ opacity : 1
42+ }
43+ 100% {
44+ opacity : 0.1
45+ }
3146}
32-
33-
34- .ball-dark > div {
35- background-color : # 337AB7 ;
47+ @-webkit-keyframes mfr-opacity {
48+ 0% {
49+ opacity : 0.1
50+ }
51+ 50% {
52+ opacity : 1
53+ }
54+ 100% {
55+ opacity : 0.1
56+ }
57+ }
58+ @keyframes mfr-opacity {
59+ 0% {
60+ opacity : 0.1
61+ }
62+ 50% {
63+ opacity : 1
64+ }
65+ 100% {
66+ opacity : 0.1
67+ }
3668}
3769
3870.embed-responsive-pdf {
3971 padding-bottom : 95% ;
40- }
72+ }
0 commit comments