-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (54 loc) · 1013 Bytes
/
style.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
body {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
}
#viewerCanvas {
background-color: #cccccc;
border: 1px solid gray;
outline: none;
touch-action: none;
width: 100%;
height: 100%;
display: block;
}
#optionsDiv {
position: absolute;
top: 7%;
left: 50%;
transform: translateX(-50%);
padding: 10px;
}
#viewerProgressDiv {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%);
padding: 10px;
background-color: #cccccc;
border-radius: 10px;
}
#viewerProgress {
width: 100%;
}
#viewerProgressLabel {
margin-top: 2px;
display: block;
margin-left: 10px
}
#loadingContainer {
position: absolute;
bottom: 1%;
left: 50%;
transform: translateX(-50%);
padding: 10px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
select {
font-size: larger;
border-radius: 10px;
padding: 5px 10px 5px 10px;
}