-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-PageReader.css
63 lines (55 loc) · 1.11 KB
/
MMM-PageReader.css
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
60
61
62
63
#PAGE_READER {
position: absolute;
}
#PAGE_READER_IFRAME {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
overflow: hidden;
}
#PAGE_READER_DIALOG_MSG {
text-align: center;
border-right: 10px solid white;
border-left: 10px solid white;
}
.loader {
position: relative;
text-align: center;
margin: 15px;
z-index: 9999;
display: inline-block;
width: 80px;
height: 80px;
border: 10px solid rgba(0, 0, 0, .3);
border-radius: 50%;
border-top-color: #000;
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
/** MODAL STYLING **/
.modal-content {
border-radius: 10px;
box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.9);
background-color: white;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.modal-backdrop.show {
opacity: 0.75;
}