avm99963 | f0d1521 | 2017-10-08 17:03:22 +0200 | [diff] [blame] | 1 | html, 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 | |
avm99963 | 44d4ea5 | 2018-09-26 17:06:06 +0200 | [diff] [blame] | 40 | #dialog-vertex, #dialog-edge{ |
| 41 | padding: 8px; |
| 42 | user-select: auto; |
avm99963 | f0d1521 | 2017-10-08 17:03:22 +0200 | [diff] [blame] | 43 | } |
| 44 | |
avm99963 | 44d4ea5 | 2018-09-26 17:06:06 +0200 | [diff] [blame] | 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; |
avm99963 | f0d1521 | 2017-10-08 17:03:22 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Huguet57 | 23a7afe | 2018-07-23 03:29:35 +0200 | [diff] [blame] | 94 | #searchButton { |
| 95 | position: absolute; |
| 96 | right: 10px; |
| 97 | bottom: 110px; |
| 98 | z-index: 100; |
| 99 | } |
| 100 | |
avm99963 | f0d1521 | 2017-10-08 17:03:22 +0200 | [diff] [blame] | 101 | #zoomin { |
| 102 | position: absolute; |
| 103 | right: 10px; |
| 104 | bottom: 60px; |
| 105 | z-index: 100; |
| 106 | } |
| 107 | |
| 108 | #zoomout { |
| 109 | position: absolute; |
| 110 | right: 10px; |
| 111 | bottom: 10px; |
| 112 | z-index: 100; |
| 113 | } |
| 114 | |
| 115 | @media (max-width: 700px) { |
| 116 | #dialog { |
| 117 | width: Calc(100% - 32px)!important; |
| 118 | height: Calc(100% - 32px)!important; |
| 119 | margin: 16px; |
| 120 | } |
| 121 | |
| 122 | #backdrop { |
| 123 | display: block; |
| 124 | } |
| 125 | |
| 126 | #min-dialog { |
| 127 | display: block!important; |
| 128 | } |
| 129 | } |