main.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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. Side Wrapper
  102. */
  103. .sideWrapper{
  104. position: fixed;
  105. right: 0;
  106. top: 52px;
  107. height: 100%;
  108. width: calc(100% - 5em);
  109. max-width: 500px;
  110. z-index: 10;
  111. }
  112. .sideWrapper .content{
  113. height: 100%;
  114. width: 100%;
  115. position: relative;
  116. background-color: white;
  117. }
  118. .sideWrapper iframe{
  119. height: 100%;
  120. width: 100%;
  121. border: 0px solid transparent;
  122. }
  123. .sideWrapper .fadingBackground{
  124. position: fixed;
  125. top: 52px;
  126. left: 0;
  127. width: 100%;
  128. height: calc(100% - 52px);
  129. background-color: rgba(38,38,38,0.26);
  130. }
  131. .sideWrapperMenu{
  132. height: 3px;
  133. background-color: #414141;
  134. }
  135. /*
  136. RWD Rules
  137. */
  138. @media screen and (min-width: 750px) {
  139. #serverstatus{
  140. border-top-left-radius: 1em !important;
  141. }
  142. .greybackground.statustab{
  143. border-top-right-radius: 1em !important;
  144. }
  145. .standardContainer{
  146. padding-left: 2.4em;
  147. padding-right: 2.4em;
  148. padding-top: 2em;
  149. padding-bottom: 2em;
  150. }
  151. }
  152. @media screen and (max-width: 750px) {
  153. .toolbar {
  154. position: fixed;
  155. display: inline-block;
  156. width: 240px;
  157. background-color: white;
  158. top: 3.6em;
  159. right: 0;
  160. height: calc(100% - 51px);
  161. overflow-y: auto;
  162. margin-bottom: 1em;
  163. z-index: 9;
  164. padding: 1em;
  165. display:none;
  166. border-left: 1px solid rgb(206, 206, 206);
  167. }
  168. .menutoggle{
  169. display: inline-block !important;
  170. }
  171. #mainmenu{
  172. width: calc(100% - 1em);
  173. }
  174. .contentWindow{
  175. display: inline-block;
  176. width: 100%;
  177. margin-right: 0.4em;
  178. margin-left: 0.4em;
  179. }
  180. .functiontab{
  181. padding: 0em;
  182. }
  183. .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 {
  184. padding: 0rem 0rem !important;
  185. }
  186. #serverstatus.green{
  187. border-bottom: 0px solid transparent !important;
  188. }
  189. .greybackground.statustab{
  190. border-top-right-radius: 0em !important;
  191. padding: 2em 2em !important;
  192. }
  193. .standardContainer{
  194. padding-left: 1.2em;
  195. padding-right: 1.2em;
  196. padding-top: 0.6em;
  197. padding-bottom: 0.6em;
  198. }
  199. }
  200. .menudivider{
  201. font-size: 0.8em !important;
  202. color: #9c9c9c !important;
  203. padding-left: 0.6em;
  204. }
  205. /*
  206. Global rules overwrite
  207. */
  208. .ui.teal.button{
  209. background-color: #3d9c64 !important;
  210. }
  211. .ui.red.button:not(.basic){
  212. background-color: #cc3b3b !important;
  213. }
  214. .ui.menu .item{
  215. color: #5e5d5d;
  216. }
  217. .ui.secondary.vertical.menu .active.item{
  218. background-color: #414141;
  219. font-weight: 600;
  220. color: white;
  221. }
  222. .ui.secondary.vertical.menu .active.item .icon{
  223. animation: blinker 3s ease-in-out infinite;
  224. }
  225. .bluefont{
  226. color: #417ac1 !important;
  227. }
  228. @keyframes blinker {
  229. 50% {
  230. opacity: 50%;
  231. }
  232. }
  233. /*
  234. Status style overwrite
  235. */
  236. #serverstatus{
  237. height: 100%;
  238. }
  239. #statusTitle{
  240. font-weight: 300;
  241. }
  242. .statustab{
  243. border-radius: 0 !important;
  244. }
  245. .greybackground.statustab{
  246. background-color: #414141 !important;
  247. color: white;
  248. }
  249. .greybackground.statustab .ui.header:not(:first-child){
  250. margin-top: 1em;
  251. }
  252. .greybackground.statustab span,
  253. .greybackground.statustab h1,
  254. .greybackground.statustab h2,
  255. .greybackground.statustab h3,
  256. .greybackground.statustab h4,
  257. .greybackground.statustab h5 {
  258. color: white !important;
  259. }
  260. .greybackground.statustab .header{
  261. color: #b7b7b7 !important;
  262. }
  263. #serverstatus.green{
  264. background-color: #fefefe !important;
  265. border-right: 5px solid #3d9c64;
  266. }
  267. #serverstatus.green .sub.header{
  268. color: rgb(224, 224, 224);
  269. }
  270. #serverstatus.green i,
  271. #serverstatus.green #statusTitle{
  272. color: #3d9c64;
  273. }
  274. #serverstatus.green #statusText{
  275. color: #2c583d;
  276. }
  277. #serverstatus:not(.green) .dot-container{
  278. display:none;
  279. }
  280. #serverstatus:not(.green){
  281. background-color: white !important;
  282. background-image: url("img/plant.png");
  283. background-position: right;
  284. background-repeat: no-repeat;
  285. background-size: auto 100%;
  286. }
  287. #serverstatus:not(.green) #statusTitle,
  288. #serverstatus:not(.green) i,
  289. #serverstatus:not(.green) .sub.header{
  290. color: #4c4c4c;
  291. }
  292. .statustab{
  293. min-height: 5.5em;
  294. }
  295. #summaryTotalCount{
  296. font-size: 1.6em;
  297. font-weight: 300;
  298. }
  299. .statustab.summary{
  300. background-color: #f1f1f1 !important;
  301. border: 0px solid transparent !important;
  302. }
  303. .statustab.summary span, .statustab.summary i{
  304. color: rgb(37, 37, 37);
  305. }
  306. #networkActivityPlaceHolder{
  307. color:rgb(206, 206, 206);
  308. height: 200px;
  309. width: 100%;
  310. text-align: center;
  311. padding-top: 80px;
  312. display:none;
  313. }
  314. /* Decorative Animation */
  315. .dot-container {
  316. display: flex;
  317. justify-content: center;
  318. align-items: center;
  319. height: 40px;
  320. position: absolute;
  321. bottom: 0.6em;
  322. right: 1.2em;
  323. }
  324. .dot {
  325. width: 6px;
  326. height: 6px;
  327. border-radius: 50%;
  328. background-color: #d9d9d9;
  329. margin-right: 6px;
  330. animation-name: dot-animation;
  331. animation-duration: 4s;
  332. animation-timing-function: ease-in-out;
  333. animation-iteration-count: infinite;
  334. }
  335. .dot:nth-child(1) {
  336. animation-delay: 0s;
  337. }
  338. .dot:nth-child(2) {
  339. animation-delay: 1s;
  340. }
  341. .dot:nth-child(3) {
  342. animation-delay: 2s;
  343. }
  344. .dot:nth-child(4) {
  345. animation-delay: 3s;
  346. }
  347. @keyframes dot-animation {
  348. 0% {
  349. background-color: #d9d9d9;
  350. transform: scale(1);
  351. }
  352. 50% {
  353. background-color: #3d9c64;
  354. transform: scale(1.5);
  355. }
  356. 100% {
  357. background-color: #d9d9d9;
  358. transform: scale(1);
  359. }
  360. }
  361. /*
  362. Access Control
  363. */
  364. .ui.very.compact.table th{
  365. padding-top: 0.2em;
  366. padding-bottom: 0.2em;
  367. }
  368. .ui.very.compact.table td{
  369. padding-top: 0.1em;
  370. padding-bottom: 0.1em;
  371. }
  372. #ipTable.disabled{
  373. opacity: 0.5;
  374. pointer-events: none;
  375. user-select: none;
  376. }
  377. /*
  378. Uptime Monitor
  379. */
  380. #utm{
  381. background-color: white;
  382. border-radius: 1em;
  383. }
  384. .domain{
  385. margin-bottom: 1em;
  386. position: relative;
  387. }
  388. .statusDot{
  389. height: 1.8em;
  390. border-radius: 0.4em;
  391. width: 0.4em;
  392. background-color: #e8e8e8;
  393. display:inline-block;
  394. cursor: pointer;
  395. margin-left: 0.1em;
  396. }
  397. .online.statusDot{
  398. background-color: #3bd671;
  399. }
  400. .error.statusDot{
  401. background-color: #f29030;
  402. }
  403. .offline.statusDot{
  404. background-color: #df484a;
  405. }
  406. .padding.statusDot{
  407. cursor: auto;
  408. }
  409. /*
  410. Global Area Network
  411. gan.html
  412. */
  413. .clickable{
  414. cursor: pointer;
  415. }
  416. .clickable:hover{
  417. opacity: 0.6;
  418. }
  419. #ganetRangeTable td{
  420. text-align: center;
  421. }
  422. .gansnetworks.disabled{
  423. opacity: 0.5;
  424. pointer-events: none;
  425. user-select: none;
  426. }
  427. .GANetMember.authorized{
  428. border-left: 6px solid #3c9c63 !important;
  429. }
  430. .GANetMember.unauthorized{
  431. border-left: 6px solid #9c3c3c !important;
  432. }