main.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. display: inline-block;
  45. width: 100%;
  46. margin-bottom: 1em;
  47. }
  48. #mainmenu{
  49. width: calc(100% - 1em);
  50. }
  51. .contentWindow{
  52. display: inline-block;
  53. width: 100%;
  54. }
  55. }
  56. .menudivider{
  57. font-size: 0.8em !important;
  58. color: #9c9c9c !important;
  59. padding-left: 0.6em;
  60. }
  61. /*
  62. Global rules overwrite
  63. */
  64. .ui.teal.button{
  65. background-color: #7fbbc5 !important;
  66. }
  67. .ui.red.button:not(.basic){
  68. background-color: #c78e70 !important;
  69. }
  70. /*
  71. Status style overwrite
  72. */
  73. #serverstatus.green{
  74. background-color: #7fbbc5 !important;
  75. }
  76. #serverstatus:not(.green){
  77. background-color: #5f5e5c !important;
  78. }
  79. .statustab{
  80. min-height: 5em;
  81. }
  82. #summaryTotalCount{
  83. font-size: 1.6em;
  84. font-weight: 300;
  85. }
  86. .statustab.summary{
  87. background-color: #f1f1f1 !important;
  88. border: 0px solid transparent !important;
  89. }
  90. .statustab.summary span, .statustab.summary i{
  91. color: rgb(37, 37, 37);
  92. }