main.css 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. /*
  2. index.html style overwrite
  3. */
  4. :root{
  5. --theme_grey: #414141;
  6. --theme_lgrey: #f6f6f6;
  7. --theme_green: #3c9c63;
  8. --theme_fcolor: #979797;
  9. }
  10. body{
  11. background-color:#f6f6f6;
  12. color: #414141;
  13. }
  14. .functiontab{
  15. display:none;
  16. }
  17. .menubar{
  18. width: 100%;
  19. padding: 0.4em;
  20. padding-left: 1.2em;
  21. padding-right: 1.2em;
  22. background-color: #f5f5f5;
  23. margin-bottom: 1em;
  24. position: fixed;
  25. top: 0;
  26. width: 100%;
  27. z-index: 10;
  28. box-shadow: 0px 1px 5px 0px rgba(38,38,38,0.26);
  29. }
  30. .menubar .logo{
  31. height: 36px;
  32. }
  33. .menubar .item{
  34. display: inline-block;
  35. vertical-align: middle;
  36. }
  37. .wrapper{
  38. display: flex;
  39. flex-wrap: wrap;
  40. margin-top: 4.6em;
  41. }
  42. .toolbar{
  43. width: 240px;
  44. min-width: 240px;
  45. }
  46. .contentWindow{
  47. /*padding: 1em;*/
  48. flex: 1;
  49. background-color: white;
  50. border-radius: 1em;
  51. margin-right: 2em;
  52. }
  53. .menutoggle{
  54. display: none !important;
  55. }
  56. .ui.divider{
  57. font-weight: 300;
  58. }
  59. .serverstatusWrapper{
  60. padding-right: 0 !important;
  61. }
  62. .statisticWrapper{
  63. padding-left: 0 !important;
  64. }
  65. /* Message Box */
  66. #messageBox{
  67. position: fixed;
  68. bottom: 1em;
  69. right: 1em;
  70. display:none;
  71. max-width: 300px;
  72. }
  73. /* Standard containers */
  74. .standardContainer.noleftright{
  75. padding-left: 0;
  76. padding-right: 0;
  77. }
  78. .standardContainer.noleft{
  79. padding-left: 0;
  80. }
  81. .standardContainer.noright{
  82. padding-right: 0;
  83. }
  84. .standardContainer.notopdown{
  85. padding-top: 0;
  86. padding-bottom: 0;
  87. }
  88. .standardContainer.notop{
  89. padding-top: 0;
  90. }
  91. .standardContainer.nobottom{
  92. padding-bottom: 0;
  93. }
  94. /*
  95. RWD Rules
  96. */
  97. @media screen and (min-width: 750px) {
  98. #serverstatus{
  99. border-top-left-radius: 1em !important;
  100. }
  101. .greybackground.statustab{
  102. border-top-right-radius: 1em !important;
  103. }
  104. .standardContainer{
  105. padding-left: 2.4em;
  106. padding-right: 2.4em;
  107. padding-top: 2em;
  108. padding-bottom: 2em;
  109. }
  110. }
  111. @media screen and (max-width: 750px) {
  112. .toolbar {
  113. position: fixed;
  114. display: inline-block;
  115. width: 50%;
  116. background-color: white;
  117. top: 3.6em;
  118. right: 0;
  119. height: 100%;
  120. margin-bottom: 1em;
  121. z-index: 9;
  122. padding: 1em;
  123. display:none;
  124. border-left: 1px solid rgb(206, 206, 206);
  125. }
  126. .menutoggle{
  127. display: inline-block !important;
  128. }
  129. #mainmenu{
  130. width: calc(100% - 1em);
  131. }
  132. .contentWindow{
  133. display: inline-block;
  134. width: 100%;
  135. margin-right: 0.4em;
  136. margin-left: 0.4em;
  137. }
  138. .functiontab{
  139. padding: 0em;
  140. }
  141. .ui.grid > .stackable.stackable.row > .column, .ui.stackable.grid > .column.grid > .column, .ui.stackable.grid > .column.row > .column, .ui.stackable.grid > .column:not(.row), .ui.stackable.grid > .row > .column, .ui.stackable.grid > .row > .wide.column, .ui.stackable.grid > .wide.column.serverstatusWrapper {
  142. padding: 0rem 0rem !important;
  143. }
  144. #serverstatus.green{
  145. border-bottom: 0px solid transparent !important;
  146. }
  147. .greybackground.statustab{
  148. border-top-right-radius: 0em !important;
  149. padding: 2em 2em !important;
  150. }
  151. .standardContainer{
  152. padding-left: 1.2em;
  153. padding-right: 1.2em;
  154. padding-top: 0.6em;
  155. padding-bottom: 0.6em;
  156. }
  157. }
  158. .menudivider{
  159. font-size: 0.8em !important;
  160. color: #9c9c9c !important;
  161. padding-left: 0.6em;
  162. }
  163. /*
  164. Global rules overwrite
  165. */
  166. .ui.teal.button{
  167. background-color: #3d9c64 !important;
  168. }
  169. .ui.red.button:not(.basic){
  170. background-color: #cc3b3b !important;
  171. }
  172. .ui.menu .item{
  173. color: #5e5d5d;
  174. }
  175. .ui.secondary.vertical.menu .active.item{
  176. background-color: #414141;
  177. font-weight: 600;
  178. color: white;
  179. }
  180. .ui.secondary.vertical.menu .active.item .icon{
  181. animation: blinker 3s ease-in-out infinite;
  182. }
  183. .bluefont{
  184. color: #a9d1f3 !important;
  185. }
  186. @keyframes blinker {
  187. 50% {
  188. opacity: 50%;
  189. }
  190. }
  191. /*
  192. Status style overwrite
  193. */
  194. #serverstatus{
  195. height: 100%;
  196. }
  197. #statusTitle{
  198. font-weight: 300;
  199. }
  200. .statustab{
  201. border-radius: 0 !important;
  202. }
  203. .greybackground.statustab{
  204. background-color: #414141 !important;
  205. color: white;
  206. }
  207. .greybackground.statustab .ui.header:not(:first-child){
  208. margin-top: 1em;
  209. }
  210. .greybackground.statustab span,
  211. .greybackground.statustab h1,
  212. .greybackground.statustab h2,
  213. .greybackground.statustab h3,
  214. .greybackground.statustab h4,
  215. .greybackground.statustab h5 {
  216. color: white !important;
  217. }
  218. .greybackground.statustab .header{
  219. color: #b7b7b7 !important;
  220. }
  221. #serverstatus.green{
  222. background-color: #fefefe !important;
  223. border-right: 5px solid #3d9c64;
  224. }
  225. #serverstatus.green .sub.header{
  226. color: rgb(224, 224, 224);
  227. }
  228. #serverstatus.green i,
  229. #serverstatus.green #statusTitle{
  230. color: #3d9c64;
  231. }
  232. #serverstatus.green #statusText{
  233. color: #2c583d;
  234. }
  235. #serverstatus:not(.green) .dot-container{
  236. display:none;
  237. }
  238. #serverstatus:not(.green){
  239. background-color: white !important;
  240. background-image: url("img/plant.png");
  241. background-position: right;
  242. background-repeat: no-repeat;
  243. background-size: auto 100%;
  244. }
  245. #serverstatus:not(.green) #statusTitle,
  246. #serverstatus:not(.green) i,
  247. #serverstatus:not(.green) .sub.header{
  248. color: #4c4c4c;
  249. }
  250. .statustab{
  251. min-height: 5.5em;
  252. }
  253. #summaryTotalCount{
  254. font-size: 1.6em;
  255. font-weight: 300;
  256. }
  257. .statustab.summary{
  258. background-color: #f1f1f1 !important;
  259. border: 0px solid transparent !important;
  260. }
  261. .statustab.summary span, .statustab.summary i{
  262. color: rgb(37, 37, 37);
  263. }
  264. #networkActivityPlaceHolder{
  265. color:rgb(206, 206, 206);
  266. height: 200px;
  267. width: 100%;
  268. text-align: center;
  269. padding-top: 80px;
  270. display:none;
  271. }
  272. /* Decorative Animation */
  273. .dot-container {
  274. display: flex;
  275. justify-content: center;
  276. align-items: center;
  277. height: 40px;
  278. position: absolute;
  279. bottom: 0.6em;
  280. right: 1.2em;
  281. }
  282. .dot {
  283. width: 6px;
  284. height: 6px;
  285. border-radius: 50%;
  286. background-color: #d9d9d9;
  287. margin-right: 6px;
  288. animation-name: dot-animation;
  289. animation-duration: 4s;
  290. animation-timing-function: ease-in-out;
  291. animation-iteration-count: infinite;
  292. }
  293. .dot:nth-child(1) {
  294. animation-delay: 0s;
  295. }
  296. .dot:nth-child(2) {
  297. animation-delay: 1s;
  298. }
  299. .dot:nth-child(3) {
  300. animation-delay: 2s;
  301. }
  302. .dot:nth-child(4) {
  303. animation-delay: 3s;
  304. }
  305. @keyframes dot-animation {
  306. 0% {
  307. background-color: #d9d9d9;
  308. transform: scale(1);
  309. }
  310. 50% {
  311. background-color: #3d9c64;
  312. transform: scale(1.5);
  313. }
  314. 100% {
  315. background-color: #d9d9d9;
  316. transform: scale(1);
  317. }
  318. }
  319. /*
  320. Uptime Monitor
  321. */
  322. #utm{
  323. background-color: white;
  324. border-radius: 1em;
  325. }
  326. .domain{
  327. margin-bottom: 1em;
  328. position: relative;
  329. }
  330. .statusDot{
  331. height: 1.8em;
  332. border-radius: 0.4em;
  333. width: 0.4em;
  334. background-color: #e8e8e8;
  335. display:inline-block;
  336. cursor: pointer;
  337. margin-left: 0.1em;
  338. }
  339. .online.statusDot{
  340. background-color: #3bd671;
  341. }
  342. .error.statusDot{
  343. background-color: #f29030;
  344. }
  345. .offline.statusDot{
  346. background-color: #df484a;
  347. }
  348. .padding.statusDot{
  349. cursor: auto;
  350. }