style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. img {
  2. max-width: 100%;
  3. }
  4. .images_1{
  5. flex: 1 1 auto;
  6. padding: 0;
  7. min-width: 15em;
  8. max-width: 2000px;
  9. }
  10. .column {
  11. flex: 1;
  12. background: #f2f2f2;
  13. box-sizing: border-box;
  14. }
  15. .column-one {
  16. order: 1;
  17. }
  18. .column-two {
  19. order: 2;
  20. }
  21. @media (max-width: 50em) { /* 2 x 15em (.text & .images) + 2em (left & right margin of the body element) + 1em (.text margin-right) */
  22. .container {flex-wrap: wrap}
  23. }
  24. .red{
  25. background: red;
  26. opacity: 0.4;
  27. position: absolute;
  28. left: 0px;
  29. top: 0px;
  30. }
  31. .green{
  32. background: red;
  33. opacity: 0.2;
  34. width: 20;
  35. height: 20px;
  36. position: absolute;
  37. left: 0px;
  38. top: 0px;
  39. }
  40. .frame {
  41. flex: 1 1 auto;
  42. border: 0;
  43. height: 50%;
  44. width: 100%;
  45. }
  46. table {
  47. margin:auto;
  48. }
  49. #datacolumn { padding: 0; }
  50. /*
  51. #graphcolumn {
  52. flex: 7.5 1 0%;
  53. padding: 0;
  54. margin: 0;
  55. }
  56. #detailcolumn {
  57. flex: 2.5 1 0%;
  58. padding: 1em 1em 1em 2em;
  59. margin: 0;
  60. }
  61. .optcontent input {
  62. width: 8em;
  63. }
  64. .optcontent .stuff, #detailcolumn .new {
  65. padding-left: 1em;
  66. padding-bottom: 1em;
  67. padding-top: 0.5em;
  68. }
  69. .optcontent .stuff > div {
  70. padding-bottom: 0.2em;
  71. }
  72. .optcontent .heading {
  73. font-weight: bold;
  74. }
  75. .draw {
  76. width: 1253px;
  77. height: 1023px;
  78. background-image: url("uebersicht.png");
  79. background-repeat: no-repeat;
  80. background-position: left top;
  81. background-size: contain;
  82. }
  83. .draw g.node rect {
  84. stroke: #a4a4a4;
  85. stroke-width: 0.01em;
  86. fill: rgba(255, 255, 255, 1);
  87. }
  88. .draw .station {
  89. font-size: 0.06em;
  90. padding: 0.2em;
  91. border: 0.2em solid #a4a4a4;
  92. border-radius: 0.5em;
  93. background-color: rgba(255, 255, 255, 1);
  94. z-index: 99;
  95. width: 7.1em;
  96. white-space: pre-line;
  97. word-wrap: break-word;
  98. overflow-wrap: break-word;
  99. overflow: hidden;
  100. }
  101. .draw g.node:hover rect {
  102. fill: rgba(255, 189, 189, 1);
  103. }
  104. .draw g.node.active rect {
  105. fill: rgba(255, 189, 189, 1);
  106. }
  107. .draw polyline.conn-red {
  108. stroke:rgb(255,0,0);
  109. stroke-width:0.2;
  110. fill:none;
  111. }
  112. .draw polyline.conn-green {
  113. stroke:rgb(0,255,0);
  114. stroke-width:0.2;
  115. fill:none;
  116. }
  117. .station-condition {
  118. padding-left: 2em;
  119. }
  120. .station-id {
  121. font-weight: bold;
  122. }
  123. input.c2 {
  124. width: 15em;
  125. }
  126. input.c3 {
  127. width: 4em;
  128. }
  129. input.c4 {
  130. width: 25em;
  131. }
  132. input.c5 {
  133. width: 21em;
  134. }
  135. input.c6 {
  136. width: 2em;
  137. }
  138. */