main.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. }
  38. .contentWindow{
  39. padding: 1em;
  40. flex: 1;
  41. }
  42. @media screen and (max-width: 750px) {
  43. .toolbar {
  44. position: fixed;
  45. display: inline-block;
  46. width: 50%;
  47. background-color: white;
  48. top: 3.6em;
  49. right: 0;
  50. height: 100%;
  51. margin-bottom: 1em;
  52. z-index: 9;
  53. padding: 1em;
  54. display:none;
  55. border-left: 1px solid rgb(206, 206, 206);
  56. }
  57. #mainmenu{
  58. width: calc(100% - 1em);
  59. }
  60. .contentWindow{
  61. display: inline-block;
  62. width: 100%;
  63. }
  64. }
  65. .menudivider{
  66. font-size: 0.8em !important;
  67. color: #9c9c9c !important;
  68. padding-left: 0.6em;
  69. }
  70. /*
  71. Global rules overwrite
  72. */
  73. .ui.teal.button{
  74. background-color: #7fbbc5 !important;
  75. }
  76. .ui.red.button:not(.basic){
  77. background-color: #c78e70 !important;
  78. }
  79. /*
  80. Status style overwrite
  81. */
  82. #serverstatus.green{
  83. background-color: #7fbbc5 !important;
  84. }
  85. #serverstatus:not(.green){
  86. background-color: #5f5e5c !important;
  87. }
  88. .statustab{
  89. min-height: 5.5em;
  90. }
  91. #summaryTotalCount{
  92. font-size: 1.6em;
  93. font-weight: 300;
  94. }
  95. .statustab.summary{
  96. background-color: #f1f1f1 !important;
  97. border: 0px solid transparent !important;
  98. }
  99. .statustab.summary span, .statustab.summary i{
  100. color: rgb(37, 37, 37);
  101. }