main.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  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.segment{
  252. box-shadow: none !important;
  253. }
  254. .ui.secondary.vertical.menu .active.item{
  255. background: var(--theme_background);
  256. font-weight: 600;
  257. color: white;
  258. }
  259. .ui.secondary.vertical.menu .active.item .icon{
  260. animation: blinker 3s ease-in-out infinite;
  261. }
  262. .ui.important.basic.segment{
  263. background: linear-gradient(217deg, rgba(234,238,175,1) 16%, rgba(254,255,242,1) 78%);
  264. border-radius: 1em;
  265. }
  266. .basic.segment.advanceoptions{
  267. background-color: #f7f7f7;
  268. border-radius: 1em;
  269. }
  270. .bluefont{
  271. color: #417ac1 !important;
  272. }
  273. @keyframes blinker {
  274. 50% {
  275. opacity: 50%;
  276. }
  277. }
  278. /*
  279. Status style overwrite
  280. */
  281. #serverstatus{
  282. height: 100%;
  283. border-radius: 1em;
  284. margin: 1em;
  285. }
  286. #statusTitle{
  287. font-weight: 300;
  288. }
  289. #serverstatus.green{
  290. background: linear-gradient(60deg, #27e7ff, #00ca52);
  291. }
  292. #serverstatus.green .sub.header{
  293. color: rgb(224, 224, 224);
  294. }
  295. #serverstatus.green i,
  296. #serverstatus.green #statusTitle{
  297. color: rgb(255, 255, 255);
  298. }
  299. #serverstatus.green #statusText{
  300. color: rgb(255, 255, 255);
  301. }
  302. #serverstatus:not(.green) .dot-container{
  303. display:none;
  304. }
  305. #serverstatus:not(.green){
  306. background: linear-gradient(215deg, rgba(38,60,71,1) 13%, rgba(2,3,42,1) 84%);
  307. }
  308. #serverstatus:not(.green) #statusTitle,
  309. #serverstatus:not(.green) i,
  310. #serverstatus:not(.green) .sub.header{
  311. color: white;
  312. }
  313. .statustab{
  314. min-height: 5.5em;
  315. margin: 1em;
  316. border-radius: 1em !important;
  317. }
  318. #summaryTotalCount{
  319. font-size: 1.6em;
  320. font-weight: 300;
  321. }
  322. .statustab.summary{
  323. background-color: #f1f1f1 !important;
  324. border: 0px solid transparent !important;
  325. }
  326. .statustab.summary span, .statustab.summary i{
  327. color: rgb(37, 37, 37);
  328. }
  329. #networkActivityPlaceHolder{
  330. color:rgb(206, 206, 206);
  331. height: 200px;
  332. width: 100%;
  333. text-align: center;
  334. padding-top: 80px;
  335. display:none;
  336. }
  337. /* Decorative Animation */
  338. .dot-container {
  339. display: flex;
  340. justify-content: center;
  341. align-items: center;
  342. height: 40px;
  343. position: absolute;
  344. bottom: 0.6em;
  345. right: 1.2em;
  346. }
  347. .dot {
  348. width: 6px;
  349. height: 6px;
  350. border-radius: 50%;
  351. background-color: #d9d9d9;
  352. margin-right: 6px;
  353. animation-name: dot-animation;
  354. animation-duration: 4s;
  355. animation-timing-function: ease-in-out;
  356. animation-iteration-count: infinite;
  357. }
  358. .dot:nth-child(1) {
  359. animation-delay: 0s;
  360. }
  361. .dot:nth-child(2) {
  362. animation-delay: 1s;
  363. }
  364. .dot:nth-child(3) {
  365. animation-delay: 2s;
  366. }
  367. .dot:nth-child(4) {
  368. animation-delay: 3s;
  369. }
  370. @keyframes dot-animation {
  371. 0% {
  372. background-color: #d9d9d9;
  373. transform: scale(1);
  374. }
  375. 50% {
  376. background-color: white;
  377. transform: scale(1.5);
  378. }
  379. 100% {
  380. background-color: #d9d9d9;
  381. transform: scale(1);
  382. }
  383. }
  384. /*
  385. HTTP Proxy & Virtual Directory
  386. */
  387. #currentVirtualDirectoryAttachingHost{
  388. background: var(--theme_background);
  389. color: white;
  390. border-radius: 1em;
  391. font-weight: bolder;
  392. }
  393. .section.disabled{
  394. opacity: 0.5;
  395. user-select: none;
  396. pointer-events: none;
  397. }
  398. /*
  399. Access Control
  400. */
  401. .ui.very.compact.table th{
  402. padding-top: 0.2em;
  403. padding-bottom: 0.2em;
  404. }
  405. .ui.very.compact.table td{
  406. padding-top: 0.1em;
  407. padding-bottom: 0.1em;
  408. }
  409. #ipTable.disabled{
  410. opacity: 0.5;
  411. pointer-events: none;
  412. user-select: none;
  413. }
  414. /*
  415. TCP Proxy
  416. */
  417. .tcproxConfig td:first-child{
  418. position: relative;
  419. }
  420. .tcproxConfig.running td:first-child{
  421. border-left: 0.6em solid #02cb59 !important;
  422. }
  423. .tcproxConfig.stopped td:first-child{
  424. border-left: 0.6em solid #02032a !important;
  425. }
  426. .tcproxConfig td:first-child .statusText{
  427. position: absolute;
  428. bottom: 0.3em;
  429. left: 0.2em;
  430. font-size: 2em;
  431. color:rgb(224, 224, 224);
  432. opacity: 0.7;
  433. pointer-events: none;
  434. user-select: none;
  435. }
  436. /*
  437. Uptime Monitor
  438. */
  439. #utm{
  440. background-color: white;
  441. border-radius: 1em;
  442. }
  443. .domain{
  444. margin-bottom: 1em;
  445. position: relative;
  446. }
  447. .statusDot{
  448. height: 1.8em;
  449. border-radius: 0.4em;
  450. width: 0.4em;
  451. background-color: #e8e8e8;
  452. display:inline-block;
  453. cursor: pointer;
  454. margin-left: 0.1em;
  455. }
  456. .online.statusDot{
  457. background-color: #3bd671;
  458. }
  459. .error.statusDot{
  460. background-color: #f29030;
  461. }
  462. .offline.statusDot{
  463. background-color: #df484a;
  464. }
  465. .padding.statusDot{
  466. cursor: auto;
  467. }
  468. /*
  469. Global Area Network
  470. gan.html
  471. */
  472. .clickable{
  473. cursor: pointer;
  474. }
  475. .clickable:hover{
  476. opacity: 0.6;
  477. }
  478. #ganetRangeTable td{
  479. text-align: center;
  480. }
  481. .gansnetworks.disabled{
  482. opacity: 0.5;
  483. pointer-events: none;
  484. user-select: none;
  485. }
  486. .GANetMember.authorized{
  487. border-left: 6px solid #3c9c63 !important;
  488. }
  489. .GANetMember.unauthorized{
  490. border-left: 6px solid #9c3c3c !important;
  491. }
  492. /*
  493. Network Utilities
  494. */
  495. #traceroute_results{
  496. resize: none;
  497. background-color: #202020;
  498. color: white;
  499. }
  500. #traceroute_results::selection {
  501. background: #a9d1f3;
  502. }