main.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. /*
  2. index.html style overwrite
  3. */
  4. body{
  5. background-color:#f6f6f6;
  6. }
  7. .functiontab{
  8. display:none;
  9. }
  10. .menubar{
  11. width: 100%;
  12. padding: 0.4em;
  13. padding-left: 1.2em;
  14. padding-right: 1.2em;
  15. background-color: #f5f5f5;
  16. margin-bottom: 1em;
  17. position: fixed;
  18. top: 0;
  19. width: 100%;
  20. z-index: 10;
  21. box-shadow: 0px 1px 5px 0px rgba(38,38,38,0.26);
  22. }
  23. .menubar .logo{
  24. height: 36px;
  25. }
  26. .menubar .item{
  27. display: inline-block;
  28. vertical-align: middle;
  29. }
  30. .wrapper{
  31. display: flex;
  32. flex-wrap: wrap;
  33. margin-top: 4.6em;
  34. }
  35. .toolbar{
  36. width: 240px;
  37. min-width: 240px;
  38. }
  39. .contentWindow{
  40. padding: 1em;
  41. flex: 1;
  42. background-color: white;
  43. border-radius: 1em;
  44. margin-right: 2em;
  45. }
  46. .menutoggle{
  47. display: none !important;
  48. }
  49. .functiontab{
  50. padding: 1em;
  51. }
  52. .ui.divider{
  53. font-weight: 300;
  54. }
  55. @media screen and (max-width: 750px) {
  56. .toolbar {
  57. position: fixed;
  58. display: inline-block;
  59. width: 50%;
  60. background-color: white;
  61. top: 3.6em;
  62. right: 0;
  63. height: 100%;
  64. margin-bottom: 1em;
  65. z-index: 9;
  66. padding: 1em;
  67. display:none;
  68. border-left: 1px solid rgb(206, 206, 206);
  69. }
  70. .menutoggle{
  71. display: inline-block !important;
  72. }
  73. #mainmenu{
  74. width: calc(100% - 1em);
  75. }
  76. .contentWindow{
  77. display: inline-block;
  78. width: 100%;
  79. margin-right: 0.4em;
  80. margin-left: 0.4em;
  81. }
  82. .functiontab{
  83. padding: 0em;
  84. }
  85. }
  86. .menudivider{
  87. font-size: 0.8em !important;
  88. color: #9c9c9c !important;
  89. padding-left: 0.6em;
  90. }
  91. /*
  92. Global rules overwrite
  93. */
  94. .ui.teal.button{
  95. background-color: #3d9c64 !important;
  96. }
  97. .ui.red.button:not(.basic){
  98. background-color: #c78e70 !important;
  99. }
  100. .ui.menu .item{
  101. color: #5e5d5d;
  102. }
  103. .ui.secondary.vertical.menu .active.item{
  104. background-color: #414141;
  105. font-weight: 600;
  106. color: white;
  107. }
  108. .ui.secondary.vertical.menu .active.item .simplistic.icon{
  109. color: white;
  110. }
  111. .simplistic.icon{
  112. color: #414141;
  113. }
  114. .bluefont{
  115. color: #a9d1f3 !important;
  116. }
  117. /*
  118. Status style overwrite
  119. */
  120. #serverstatus.green{
  121. background-color: #7fbbc5 !important;
  122. }
  123. #serverstatus:not(.green){
  124. background-color: #5f5e5c !important;
  125. }
  126. .statustab{
  127. min-height: 5.5em;
  128. }
  129. #summaryTotalCount{
  130. font-size: 1.6em;
  131. font-weight: 300;
  132. }
  133. .statustab.summary{
  134. background-color: #f1f1f1 !important;
  135. border: 0px solid transparent !important;
  136. }
  137. .statustab.summary span, .statustab.summary i{
  138. color: rgb(37, 37, 37);
  139. }
  140. /*
  141. Uptime Monitor
  142. */
  143. #utm{
  144. background-color: white;
  145. border-radius: 1em;
  146. }
  147. .domain{
  148. margin-bottom: 1em;
  149. position: relative;
  150. }
  151. .statusDot{
  152. height: 1.8em;
  153. border-radius: 0.4em;
  154. width: 0.4em;
  155. background-color: #e8e8e8;
  156. display:inline-block;
  157. cursor: pointer;
  158. margin-left: 0.1em;
  159. }
  160. .online.statusDot{
  161. background-color: #3bd671;
  162. }
  163. .error.statusDot{
  164. background-color: #f29030;
  165. }
  166. .offline.statusDot{
  167. background-color: #df484a;
  168. }
  169. .padding.statusDot{
  170. cursor: auto;
  171. }