blob: 0343114ea5736a9d32d020ec2c1cb1efe55dc05f [file] [log] [blame]
avm99963f0d15212017-10-08 17:03:22 +02001html, body {
2 margin: 0;
3 width: 100%;
4 height: 100%;
5 background-color: #060606;
6 color: white;
7 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
8 user-select: none!important;
9 font-family: 'Roboto';
10}
11
12#graf {
13 width: 100%;
14 height: 100%;
15}
16
17#dialog {
18 position: absolute;
19 top: 0px;
20 left: 0px;
21 width: 300px;
22 height: 100%;
23 background-color: white;
24 color: black;
25 z-index: 120;
26 overflow-y: auto;
27}
28
29#backdrop {
30 display: none;
31 position: absolute;
32 top: 0;
33 left: 0;
34 width: 100%;
35 height: 100%;
36 background-color: rgba(0, 0, 0, .5);
37 z-index: 110;
38}
39
Huguet5725cb6852018-07-23 18:37:56 +020040.addegde-button {
41 line-height: 20px;
42 font-size: 20px;
43 width: 100%;
44 background-color: rgba(200,0,0,0.4);
avm99963f0d15212017-10-08 17:03:22 +020045}
46
Huguet5725cb6852018-07-23 18:37:56 +020047.addegde-msg {
48 display: none;
49 line-height: 20px;
50 font-size: 20px;
51 width: 100%;
52 background-color: rgba(0,200,0,0.4);
avm99963f0d15212017-10-08 17:03:22 +020053}
54
Huguet5723a7afe2018-07-23 03:29:35 +020055#searchButton {
56 position: absolute;
57 right: 10px;
58 bottom: 110px;
59 z-index: 100;
60}
61
avm99963f0d15212017-10-08 17:03:22 +020062#zoomin {
63 position: absolute;
64 right: 10px;
65 bottom: 60px;
66 z-index: 100;
67}
68
69#zoomout {
70 position: absolute;
71 right: 10px;
72 bottom: 10px;
73 z-index: 100;
74}
75
76@media (max-width: 700px) {
77 #dialog {
78 width: Calc(100% - 32px)!important;
79 height: Calc(100% - 32px)!important;
80 margin: 16px;
81 }
82
83 #backdrop {
84 display: block;
85 }
86
87 #min-dialog {
88 display: block!important;
89 }
90}