main.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. index.html style overwrite
  3. */
  4. body{
  5. background-color:white;
  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. }
  43. .menutoggle{
  44. display: none !important;
  45. }
  46. @media screen and (max-width: 750px) {
  47. .toolbar {
  48. position: fixed;
  49. display: inline-block;
  50. width: 50%;
  51. background-color: white;
  52. top: 3.6em;
  53. right: 0;
  54. height: 100%;
  55. margin-bottom: 1em;
  56. z-index: 9;
  57. padding: 1em;
  58. display:none;
  59. border-left: 1px solid rgb(206, 206, 206);
  60. }
  61. .menutoggle{
  62. display: inline-block !important;
  63. }
  64. #mainmenu{
  65. width: calc(100% - 1em);
  66. }
  67. .contentWindow{
  68. display: inline-block;
  69. width: 100%;
  70. }
  71. }
  72. .menudivider{
  73. font-size: 0.8em !important;
  74. color: #9c9c9c !important;
  75. padding-left: 0.6em;
  76. }
  77. /*
  78. Global rules overwrite
  79. */
  80. .ui.teal.button{
  81. background-color: #7fbbc5 !important;
  82. }
  83. .ui.red.button:not(.basic){
  84. background-color: #c78e70 !important;
  85. }
  86. /*
  87. Status style overwrite
  88. */
  89. #serverstatus.green{
  90. background-color: #7fbbc5 !important;
  91. }
  92. #serverstatus:not(.green){
  93. background-color: #5f5e5c !important;
  94. }
  95. .statustab{
  96. min-height: 5.5em;
  97. }
  98. #summaryTotalCount{
  99. font-size: 1.6em;
  100. font-weight: 300;
  101. }
  102. .statustab.summary{
  103. background-color: #f1f1f1 !important;
  104. border: 0px solid transparent !important;
  105. }
  106. .statustab.summary span, .statustab.summary i{
  107. color: rgb(37, 37, 37);
  108. }
  109. /*
  110. Uptime Monitor
  111. */
  112. #utm{
  113. background-color: white;
  114. border-radius: 1em;
  115. }
  116. .domain{
  117. margin-bottom: 1em;
  118. position: relative;
  119. }
  120. .statusDot{
  121. height: 1.8em;
  122. border-radius: 0.4em;
  123. width: 0.4em;
  124. background-color: #e8e8e8;
  125. display:inline-block;
  126. cursor: pointer;
  127. margin-left: 0.1em;
  128. }
  129. .online.statusDot{
  130. background-color: #3bd671;
  131. }
  132. .error.statusDot{
  133. background-color: #f29030;
  134. }
  135. .offline.statusDot{
  136. background-color: #df484a;
  137. }
  138. .padding.statusDot{
  139. cursor: auto;
  140. }