-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathmfr.css
More file actions
59 lines (51 loc) · 1.6 KB
/
mfr.css
File metadata and controls
59 lines (51 loc) · 1.6 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*The osf will ask for this file. It is never actually linked to anything specific in MFR.
This CSS was stripped out of base.css from the osf-style repo.
*/
#mfrIframe .ball-pulse > div:nth-child(0) {
-webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#mfrIframe .ball-pulse > div:nth-child(1) {
-webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#mfrIframe .ball-pulse > div:nth-child(2) {
-webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#mfrIframe .ball-pulse > div:nth-child(3) {
-webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#mfrIframe .ball-pulse > div {
background-color: #fff;
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
}
#mfrIframe .ball-dark > div {
background-color: #337AB7;
}
#mfrIframe .ball-scale {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 250px;
top: 0;
left: 0;
}
#mfrIframe .embed-responsive-pdf {
padding-bottom: 95%;
}
#mfrIframe iframe {
opacity: 0.0;
}
#mfrIframe {
min-height: 250px;
}