main.css 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585
  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. --theme_advance: #f8f8f9;
  10. --theme_background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  11. }
  12. body{
  13. background-color:#f6f6f6;
  14. color: #414141;
  15. }
  16. .functiontab{
  17. display:none;
  18. }
  19. .advance{
  20. background: var(--theme_advance) !important;
  21. }
  22. .advancezone{
  23. background: var(--theme_advance) !important;
  24. border-radius: 1em !important;
  25. }
  26. .menubar{
  27. width: 100%;
  28. padding: 0.4em;
  29. padding-left: 1.2em;
  30. padding-right: 1.2em;
  31. background-color: #ffffff;
  32. margin-bottom: 1em;
  33. border-bottom: 1px solid rgb(226, 226, 226);
  34. position: fixed;
  35. top: 0;
  36. width: 100%;
  37. z-index: 10;
  38. }
  39. .menubar .logo{
  40. height: 36px;
  41. }
  42. .menubar .item{
  43. display: inline-block;
  44. vertical-align: middle;
  45. }
  46. .wrapper{
  47. display: flex;
  48. align-items: flex-start;
  49. padding-top: 4.6em;
  50. }
  51. .toolbar {
  52. display: inline-block;
  53. height: calc(100% - 51px);
  54. overflow-y: auto;
  55. width: 240px;
  56. }
  57. .contentWindow{
  58. display: inline-block;
  59. width: calc(100% - 240px);
  60. vertical-align: top;
  61. background-color: white;
  62. border-radius: 1em;
  63. margin-right: 2em;
  64. }
  65. .menutoggle{
  66. display: none !important;
  67. }
  68. .ui.divider{
  69. font-weight: 300;
  70. }
  71. .serverstatusWrapper{
  72. padding-right: 0 !important;
  73. }
  74. .statisticWrapper{
  75. margin-top: 1em;
  76. padding-left: 0 !important;
  77. padding-bottom: 0 !important;
  78. padding-right: 1em !important;
  79. }
  80. .statisticWrapper .statustab{
  81. margin-right: 1em;
  82. }
  83. /* Message Box */
  84. #messageBox{
  85. position: fixed;
  86. bottom: 1em;
  87. right: 1em;
  88. display:none;
  89. max-width: 300px;
  90. z-index: 999;
  91. }
  92. /* Confirm Box */
  93. #confirmBox{
  94. position: fixed;
  95. z-index: 999;
  96. bottom: 1em;
  97. right: 1em;
  98. min-width: 300px;
  99. background-color: #ffffff;
  100. color: rgb(65, 65, 65);
  101. box-shadow: 10px 10px 5px -2px rgba(0,0,0,0.13);
  102. }
  103. #confirmBox .confirmBoxBody{
  104. padding: 1em;
  105. }
  106. #confirmBox .ui.progress .bar{
  107. background: #a9d1f3 !important;
  108. }
  109. #confirmBox .confirmBoxBody .button{
  110. margin-top: -0.4em;
  111. }
  112. #confirmBox .questionToConfirm{
  113. margin-top: -0.2em;
  114. }
  115. /* Standard containers */
  116. .standardContainer{
  117. position: relative;
  118. }
  119. .standardContainer.noleftright{
  120. padding-left: 0;
  121. padding-right: 0;
  122. }
  123. .standardContainer.noleft{
  124. padding-left: 0;
  125. }
  126. .standardContainer.noright{
  127. padding-right: 0;
  128. }
  129. .standardContainer.notopdown{
  130. padding-top: 0;
  131. padding-bottom: 0;
  132. }
  133. .standardContainer.notop{
  134. padding-top: 0;
  135. }
  136. .standardContainer.nobottom{
  137. padding-bottom: 0;
  138. }
  139. /*
  140. Side Wrapper
  141. */
  142. .sideWrapper{
  143. position: fixed;
  144. right: 0;
  145. top: 52px;
  146. height: 100%;
  147. width: calc(100% - 5em);
  148. max-width: 500px;
  149. z-index: 10;
  150. }
  151. .sideWrapper .content{
  152. height: 100%;
  153. width: 100%;
  154. position: relative;
  155. background-color: white;
  156. }
  157. .sideWrapper iframe{
  158. height: calc(100% - 55px);
  159. width: 100%;
  160. border: 0px solid transparent;
  161. }
  162. .sideWrapper .fadingBackground{
  163. position: fixed;
  164. top: 52px;
  165. left: 0;
  166. width: 100%;
  167. height: calc(100% - 52px);
  168. background-color: rgba(38,38,38,0.26);
  169. }
  170. .sideWrapperMenu{
  171. height: 3px;
  172. background-color: #414141;
  173. }
  174. /*
  175. RWD Rules
  176. */
  177. @media screen and (min-width: 750px) {
  178. .standardContainer{
  179. padding-left: 2.4em;
  180. padding-right: 2.4em;
  181. padding-top: 2em;
  182. padding-bottom: 2em;
  183. }
  184. }
  185. @media screen and (max-width: 748px) {
  186. #serverstatus{
  187. margin-left: 0 !important;
  188. margin-right: 0 !important;
  189. }
  190. .statisticWrapper .statustab{
  191. margin-left: 0 !important;
  192. margin-right: 0 !important;
  193. }
  194. .toolbar {
  195. position: fixed;
  196. display: inline-block;
  197. width: 240px;
  198. background-color: white;
  199. top: 3.6em;
  200. right: 0;
  201. height: calc(100% - 51px);
  202. overflow-y: auto;
  203. margin-bottom: 1em;
  204. z-index: 9;
  205. padding: 1em;
  206. display:none;
  207. border-left: 1px solid rgb(206, 206, 206);
  208. }
  209. .menutoggle{
  210. display: inline-block !important;
  211. }
  212. #mainmenu{
  213. width: calc(100% - 1em);
  214. }
  215. .contentWindow{
  216. display: inline-block;
  217. width: 100%;
  218. margin-right: 0.4em;
  219. margin-left: 0.4em;
  220. }
  221. .functiontab{
  222. padding: 0em;
  223. }
  224. #serverstatus.green{
  225. border-bottom: 0px solid transparent !important;
  226. }
  227. .standardContainer{
  228. padding-left: 1.2em;
  229. padding-right: 1.2em;
  230. padding-top: 0.6em;
  231. padding-bottom: 0.6em;
  232. }
  233. }
  234. .menudivider{
  235. font-size: 0.8em !important;
  236. color: #9c9c9c !important;
  237. padding-left: 0.6em;
  238. }
  239. /*
  240. Global rules overwrite
  241. */
  242. .ui.teal.button{
  243. background-color: #3d9c64 !important;
  244. }
  245. .ui.red.button:not(.basic){
  246. background-color: #cc3b3b !important;
  247. }
  248. .ui.menu .item{
  249. color: #5e5d5d;
  250. }
  251. .ui.secondary.vertical.menu .active.item{
  252. background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  253. font-weight: 600;
  254. color: white;
  255. }
  256. .ui.secondary.vertical.menu .active.item .icon{
  257. animation: blinker 3s ease-in-out infinite;
  258. }
  259. .bluefont{
  260. color: #417ac1 !important;
  261. }
  262. .ui.inverted.table{
  263. background: var(--theme_background);
  264. }
  265. @keyframes blinker {
  266. 50% {
  267. opacity: 50%;
  268. }
  269. }
  270. /*
  271. Status style overwrite
  272. */
  273. #serverstatus{
  274. height: 100%;
  275. border-radius: 1em;
  276. margin: 1em;
  277. }
  278. #statusTitle{
  279. font-weight: 300;
  280. }
  281. #serverstatus.green{
  282. background: linear-gradient(60deg, #27e7ff, #00ca52);
  283. }
  284. #serverstatus.green .sub.header{
  285. color: rgb(224, 224, 224);
  286. }
  287. #serverstatus.green i,
  288. #serverstatus.green #statusTitle{
  289. color: rgb(255, 255, 255);
  290. }
  291. #serverstatus.green #statusText{
  292. color: rgb(255, 255, 255);
  293. }
  294. #serverstatus:not(.green) .dot-container{
  295. display:none;
  296. }
  297. #serverstatus:not(.green){
  298. background: linear-gradient(215deg, rgba(38,60,71,1) 13%, rgba(2,3,42,1) 84%);
  299. }
  300. #serverstatus:not(.green) #statusTitle,
  301. #serverstatus:not(.green) i,
  302. #serverstatus:not(.green) .sub.header{
  303. color: white;
  304. }
  305. .statustab{
  306. min-height: 5.5em;
  307. margin: 1em;
  308. border-radius: 1em !important;
  309. }
  310. #summaryTotalCount{
  311. font-size: 1.6em;
  312. font-weight: 300;
  313. }
  314. .statustab.summary{
  315. background-color: #f1f1f1 !important;
  316. border: 0px solid transparent !important;
  317. }
  318. .statustab.summary span, .statustab.summary i{
  319. color: rgb(37, 37, 37);
  320. }
  321. #networkActivityPlaceHolder{
  322. color:rgb(206, 206, 206);
  323. height: 200px;
  324. width: 100%;
  325. text-align: center;
  326. padding-top: 80px;
  327. display:none;
  328. }
  329. /* Decorative Animation */
  330. .dot-container {
  331. display: flex;
  332. justify-content: center;
  333. align-items: center;
  334. height: 40px;
  335. position: absolute;
  336. bottom: 0.6em;
  337. right: 1.2em;
  338. }
  339. .dot {
  340. width: 6px;
  341. height: 6px;
  342. border-radius: 50%;
  343. background-color: #d9d9d9;
  344. margin-right: 6px;
  345. animation-name: dot-animation;
  346. animation-duration: 4s;
  347. animation-timing-function: ease-in-out;
  348. animation-iteration-count: infinite;
  349. }
  350. .dot:nth-child(1) {
  351. animation-delay: 0s;
  352. }
  353. .dot:nth-child(2) {
  354. animation-delay: 1s;
  355. }
  356. .dot:nth-child(3) {
  357. animation-delay: 2s;
  358. }
  359. .dot:nth-child(4) {
  360. animation-delay: 3s;
  361. }
  362. @keyframes dot-animation {
  363. 0% {
  364. background-color: #d9d9d9;
  365. transform: scale(1);
  366. }
  367. 50% {
  368. background-color: white;
  369. transform: scale(1.5);
  370. }
  371. 100% {
  372. background-color: #d9d9d9;
  373. transform: scale(1);
  374. }
  375. }
  376. /*
  377. Access Control
  378. */
  379. .ui.very.compact.table th{
  380. padding-top: 0.2em;
  381. padding-bottom: 0.2em;
  382. }
  383. .ui.very.compact.table td{
  384. padding-top: 0.1em;
  385. padding-bottom: 0.1em;
  386. }
  387. #ipTable.disabled{
  388. opacity: 0.5;
  389. pointer-events: none;
  390. user-select: none;
  391. }
  392. /*
  393. TCP Proxy
  394. */
  395. .tcproxConfig td:first-child{
  396. position: relative;
  397. }
  398. .tcproxConfig.running td:first-child{
  399. border-left: 0.6em solid #21ba45 !important;
  400. }
  401. .tcproxConfig.stopped td:first-child{
  402. border-left: 0.6em solid #414141 !important;
  403. }
  404. .tcproxConfig td:first-child .statusText{
  405. position: absolute;
  406. bottom: 0.3em;
  407. left: 0.2em;
  408. font-size: 2em;
  409. color:rgb(224, 224, 224);
  410. opacity: 0.7;
  411. pointer-events: none;
  412. user-select: none;
  413. }
  414. /*
  415. Uptime Monitor
  416. */
  417. #utm{
  418. background-color: white;
  419. border-radius: 1em;
  420. }
  421. .domain{
  422. margin-bottom: 1em;
  423. position: relative;
  424. }
  425. .statusDot{
  426. height: 1.8em;
  427. border-radius: 0.4em;
  428. width: 0.4em;
  429. background-color: #e8e8e8;
  430. display:inline-block;
  431. cursor: pointer;
  432. margin-left: 0.1em;
  433. }
  434. .online.statusDot{
  435. background-color: #3bd671;
  436. }
  437. .error.statusDot{
  438. background-color: #f29030;
  439. }
  440. .offline.statusDot{
  441. background-color: #df484a;
  442. }
  443. .padding.statusDot{
  444. cursor: auto;
  445. }
  446. /*
  447. Global Area Network
  448. gan.html
  449. */
  450. .clickable{
  451. cursor: pointer;
  452. }
  453. .clickable:hover{
  454. opacity: 0.6;
  455. }
  456. #ganetRangeTable td{
  457. text-align: center;
  458. }
  459. .gansnetworks.disabled{
  460. opacity: 0.5;
  461. pointer-events: none;
  462. user-select: none;
  463. }
  464. .GANetMember.authorized{
  465. border-left: 6px solid #3c9c63 !important;
  466. }
  467. .GANetMember.unauthorized{
  468. border-left: 6px solid #9c3c3c !important;
  469. }
  470. /*
  471. Network Utilities
  472. */
  473. #traceroute_results{
  474. resize: none;
  475. background-color: #202020;
  476. color: white;
  477. }
  478. #traceroute_results::selection {
  479. background: #a9d1f3;
  480. }