main.css 8.2 KB

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