blob: 5c6b812bdc8d4dce081028472a2c24a49b560c17 [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
40#dialog-vertex, #dialog-edge{
41 padding: 8px;
42 user-select: auto;
43}
44
45#dialog h2 {
46 font-weight: bold;
47 font-size: 20px;
48}
49
50#dialog h3 {
51 font-weight: bold;
52 font-size: 16px;
53 margin-bottom: 0;
54}
55
56#quit-dialog, #quit2-dialog {
57 position: absolute;
58 top: 8px;
59 right: 8px;
60}
61
62#min-dialog, #max-dialog {
63 position: absolute;
64 top: 8px;
65 right: 48px;
66}
67
68#min-dialog {
69 display: none;
70}
71
72#summary-dialog {
73 position: absolute;
74 top: 0px;
75 left: 0px;
76 width: 100%;
77 height: 100px;
78 background-color: white;
79 color: black;
80 z-index: 120;
81}
82
83#summary-vertex {
84 padding: 8px;
85 user-select: auto;
86}
87
88#summary-dialog h2 {
89 font-weight: bold;
90 font-size: 20px;
91 margin: 0;
92}
93
94#zoomin {
95 position: absolute;
96 right: 10px;
97 bottom: 60px;
98 z-index: 100;
99}
100
101#zoomout {
102 position: absolute;
103 right: 10px;
104 bottom: 10px;
105 z-index: 100;
106}
107
108@media (max-width: 700px) {
109 #dialog {
110 width: Calc(100% - 32px)!important;
111 height: Calc(100% - 32px)!important;
112 margin: 16px;
113 }
114
115 #backdrop {
116 display: block;
117 }
118
119 #min-dialog {
120 display: block!important;
121 }
122}