-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmobile-script.css
68 lines (62 loc) · 1.17 KB
/
mobile-script.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
64
65
66
67
68
.qFrame {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
white-space: nowrap;
overflow: hidden;
z-index: 999;
pointer-events: none;
}
.qFrame .page {
box-sizing: border-box;
width: 100%;
height: 100%;
display: inline-block;
background: white;
padding: 5%;
pointer-events: initial;
}
.qFrame .editor-page {
pointer-events: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
white-space: nowrap;
overflow: hidden;
z-index: 999;
}
.qFrame .editor-page .header {
height: 50px;
width: 100%;
background: white;
position: absolute;
top: 0;
left: 0;
pointer-events: initial;
}
.editor-page .header button {
float: right;
}
.qFrame .editor-page .footer {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
overflow-x: scroll;
white-space: nowrap;
pointer-events: initial;
}
.qFrame .editor-page .footer .ref-card {
border: 2px solid red;
box-sizing: border-box;
padding: 5px;
margin: 5%;
width: 70%;
background: rgba(50, 20, 20, 0.3);
display: inline-block;
white-space: pre-line;
}