space_hud.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <style type="text/css">
  2. #screen-container {
  3. position: relative;
  4. margin: 0;
  5. padding: 0;
  6. color: rgb(204, 204, 204);
  7. display: block;
  8. margin-left: auto;
  9. margin-right: auto;
  10. white-space: nowrap;
  11. min-width: 1564px;
  12. min-height: 540px;
  13. height: 100%;
  14. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  15. }
  16. .header-info {
  17. text-align: center;
  18. }
  19. .ui-section {
  20. text-align: center;
  21. /* border: 1px solid crimson; */
  22. margin: 0;
  23. padding: 0;
  24. display: block;
  25. background-size: contain;
  26. }
  27. #top-left {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_top_tile_left.png'); */
  32. background: url('./Static/spacegameguiset/window_top_tile_left.png');
  33. height: 350px;
  34. width: 502px;
  35. background-repeat: no-repeat;
  36. background-position: left bottom;
  37. margin-left: 100px;
  38. }
  39. #top-middle {
  40. position: absolute;
  41. top: 0;
  42. left: 500px;
  43. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_top_tile_center_repeat.png'); */
  44. background: url('./Static/spacegameguiset/window_top_tile_center_repeat.png');
  45. background-repeat: repeat-x;
  46. background-position: left bottom;
  47. height: 350px;
  48. width: calc(100% - 1554px);
  49. margin-left: 100px;
  50. }
  51. #top-right {
  52. position: absolute;
  53. top: 0;
  54. right: 0;
  55. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_top_tile_right.png'); */
  56. background: url('./Static/spacegameguiset/window_top_tile_right.png');
  57. height: 350px;
  58. width: 868px;
  59. background-repeat: no-repeat;
  60. background-position: right bottom;
  61. margin-right: 86px;
  62. }
  63. #left-side {
  64. position: absolute;
  65. top: 334px;
  66. left: 0;
  67. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_middle_left.png'); */
  68. /* background: url('./Static/spacegameguiset/window_middle_left.png'); */
  69. /* height: 890px; */
  70. width: 108px;
  71. background-repeat: no-repeat;
  72. background-position: right middle;
  73. margin-left: 10px;
  74. }
  75. #main {
  76. position: absolute;
  77. top: 342px;
  78. left: 118px;
  79. /* height: 870px; */
  80. width: calc(100% - 224px);
  81. min-width: 1382px;
  82. }
  83. #right-side {
  84. position: absolute;
  85. top: 334px;
  86. right: 0;
  87. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_middle_right.png'); */
  88. /* background: url('./Static/spacegameguiset/window_middle_right.png'); */
  89. /* height: 890px; */
  90. width: 108px;
  91. background-repeat: no-repeat;
  92. background-position: left middle;
  93. }
  94. #bottom-left {
  95. position: absolute;
  96. bottom: 0;
  97. left: 0;
  98. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_bottom_tile_left.png'); */
  99. background: url('./Static/spacegameguiset/window_bottom_tile_left.png');
  100. height: 202px;
  101. width: 1031px;
  102. background-repeat: no-repeat;
  103. background-position: left top;
  104. }
  105. #bottom-middle {
  106. position: absolute;
  107. bottom: 0;
  108. left: 1029px;
  109. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_bottom_tile_center_repeat.png'); */
  110. background: url('./Static/spacegameguiset/window_bottom_tile_center_repeat.png');
  111. background-repeat: repeat-x;
  112. background-position: left top;
  113. height: 202px;
  114. width: calc(100% - 1558px);
  115. }
  116. #bottom-right {
  117. position: absolute;
  118. bottom: 0;
  119. right: 0;
  120. /* background: url('http://192.168.1.109:3110/Static/spacegameguiset/window_bottom_tile_right.png'); */
  121. background: url('./Static/spacegameguiset/window_bottom_tile_right.png');
  122. height: 202px;
  123. width: 443px;
  124. background-repeat: no-repeat;
  125. background-position: right top;
  126. margin-right: 86px;
  127. }
  128. </style>
  129. <div id="screen-container">
  130. <div id="top-left" class="ui-section"></div>
  131. <div id="top-middle" class="ui-section"></div>
  132. <div id="top-right" class="ui-section"></div>
  133. <div id="left-side" class="ui-section"></div>
  134. <div id="main" class="ui-section"></div>
  135. <div id="right-side" class="ui-section"></div>
  136. <div id="bottom-left" class="ui-section"></div>
  137. <div id="bottom-middle" class="ui-section"></div>
  138. <div id="bottom-right" class="ui-section"></div>
  139. </div>