wasserzaehler_roi.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <html><head>
  2. <title>jomjol - AI on the edge</title>
  3. <meta charset="utf-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <style type="text/css" media="screen">
  6. nav > ul {
  7. list-style: none;
  8. margin: 0;
  9. padding: 0;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. nav li {
  14. margin: 0.5em;
  15. padding: 0;
  16. font-size: 1.5em;
  17. flex: 1 1 0%;
  18. }
  19. @media (min-width: 45em) {
  20. nav > ul {
  21. flex-direction: row;
  22. }
  23. nav li {
  24. flex: 1;
  25. font-size: 1em;
  26. }
  27. }
  28. nav a {
  29. display: block;
  30. padding: 0.4em;
  31. text-decoration: none;
  32. font-weight: bold;
  33. text-align: center;
  34. border: 1px solid darkblue;
  35. border-radius: 10px;
  36. box-shadow: 0 5px 10px white inset;
  37. color: gold;
  38. background-color: darkblue;
  39. transition: all .25s ease-in;
  40. }
  41. nav li[aria-current] a {
  42. background-color: firebrick;
  43. color: gold;
  44. }
  45. nav a:focus,
  46. nav a:hover,
  47. nav li[aria-current] a:focus,
  48. nav li[aria-current] a:hover {
  49. color: darkblue;
  50. background-color: gold;
  51. }
  52. html, body {
  53. height:100%;
  54. width:100%;
  55. margin:0;
  56. }
  57. .h_iframe iframe {
  58. width:100%;
  59. height:100%;
  60. }
  61. .h_iframe {
  62. height: 100%;
  63. width:100%;
  64. }
  65. </style>
  66. <script type="text/javascript">
  67. //<![CDATA[
  68. //]]>
  69. </script>
  70. </head>
  71. <body>
  72. <table style="width:100%">
  73. <tr>
  74. <td> <img src="/img_tmp/alg_roi.jpg" alt="ROI-Image"> </td>
  75. <td>
  76. <table>
  77. <tr>
  78. Raw Value:<p>
  79. <iframe name="maincontent" id ="maincontent" src="/wasserzaehler.html?rawvalue=true" title="fileserver" allowfullscreen></iframe>
  80. </tr>
  81. <tr>
  82. Corrected Value:<p>
  83. <iframe name="maincontent" id ="maincontent" src="/wasserzaehler.html" title="fileserver" allowfullscreen></iframe>
  84. </tr>
  85. </table>
  86. </td>
  87. </tr>
  88. </table>
  89. </body></html>