blob: 1f6605930ec6fe342615bdd70a596bbed4c77093 (
plain)
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
|
/* Copyright 2015 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
html {
/* The viewer implements a custom pinch zoom. */
touch-action: pan-x pan-y;
}
body {
background-color: rgb(82, 86, 89);
color: var(--primary-text-color);
line-height: 154%;
margin: 0;
}
viewer-page-indicator {
opacity: 0;
visibility: hidden;
z-index: 2;
}
viewer-pdf-toolbar {
position: fixed;
width: 100%;
z-index: 4;
}
#content {
height: 100%;
position: fixed;
width: 100%;
z-index: 1;
}
viewer-ink-host,
#plugin {
height: 100%;
position: absolute;
width: 100%;
}
#sizer {
position: absolute;
z-index: 0;
}
@media(max-height: 250px) {
viewer-pdf-toolbar {
display: none;
}
}
@media(max-height: 200px) {
viewer-zoom-toolbar {
display: none;
}
}
@media(max-width: 300px) {
viewer-zoom-toolbar {
display: none;
}
}
|