123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607 |
- /*
- index.html style overwrite
- */
- :root{
- --theme_grey: #414141;
- --theme_lgrey: #f6f6f6;
- --theme_green: #3c9c63;
- --theme_fcolor: #979797;
- --theme_advance: #f8f8f9;
- }
- body{
- background-color:#f6f6f6;
- color: #414141;
- }
- .functiontab{
- display:none;
- }
- .advance{
- background: var(--theme_advance) !important;
- }
- .advancezone{
- background: var(--theme_advance) !important;
- border-radius: 1em !important;
- }
- .menubar{
- width: 100%;
- padding: 0.4em;
- padding-left: 1.2em;
- padding-right: 1.2em;
- background-color: #f5f5f5;
- margin-bottom: 1em;
- position: fixed;
- top: 0;
- width: 100%;
- z-index: 10;
- box-shadow: 0px 1px 5px 0px rgba(38,38,38,0.26);
- }
- .menubar .logo{
- height: 36px;
- }
- .menubar .item{
- display: inline-block;
- vertical-align: middle;
- }
- .wrapper{
- display: flex;
- align-items: flex-start;
- padding-top: 4.6em;
- }
- .toolbar {
- display: inline-block;
- height: calc(100% - 51px);
- overflow-y: auto;
- width: 240px;
- }
- .contentWindow{
- display: inline-block;
- width: calc(100% - 240px);
- vertical-align: top;
- background-color: white;
- border-radius: 1em;
- margin-right: 2em;
- }
- .menutoggle{
- display: none !important;
- }
- .ui.divider{
- font-weight: 300;
- }
- .serverstatusWrapper{
- padding-right: 0 !important;
- }
- .statisticWrapper{
- padding-left: 0 !important;
- }
- /* Message Box */
- #messageBox{
- position: fixed;
- bottom: 1em;
- right: 1em;
- display:none;
- max-width: 300px;
- z-index: 999;
- }
- /* Confirm Box */
- #confirmBox{
- position: fixed;
- z-index: 999;
- bottom: 1em;
- right: 1em;
- min-width: 300px;
- background-color: #ffffff;
- color: rgb(65, 65, 65);
- box-shadow: 10px 10px 5px -2px rgba(0,0,0,0.13);
- }
- #confirmBox .confirmBoxBody{
- padding: 1em;
- }
- #confirmBox .ui.progress .bar{
- background: #a9d1f3 !important;
- }
- #confirmBox .confirmBoxBody .button{
- margin-top: -0.4em;
- }
- #confirmBox .questionToConfirm{
- margin-top: -0.2em;
- }
- /* Standard containers */
- .standardContainer{
- position: relative;
- }
- .standardContainer.noleftright{
- padding-left: 0;
- padding-right: 0;
- }
- .standardContainer.noleft{
- padding-left: 0;
- }
- .standardContainer.noright{
- padding-right: 0;
- }
- .standardContainer.notopdown{
- padding-top: 0;
- padding-bottom: 0;
- }
- .standardContainer.notop{
- padding-top: 0;
- }
- .standardContainer.nobottom{
- padding-bottom: 0;
- }
- /*
- Side Wrapper
- */
- .sideWrapper{
- position: fixed;
- right: 0;
- top: 52px;
- height: 100%;
- width: calc(100% - 5em);
- max-width: 500px;
- z-index: 10;
- }
- .sideWrapper .content{
- height: 100%;
- width: 100%;
- position: relative;
- background-color: white;
- }
- .sideWrapper iframe{
- height: calc(100% - 55px);
- width: 100%;
- border: 0px solid transparent;
- }
- .sideWrapper .fadingBackground{
- position: fixed;
- top: 52px;
- left: 0;
- width: 100%;
- height: calc(100% - 52px);
- background-color: rgba(38,38,38,0.26);
- }
- .sideWrapperMenu{
- height: 3px;
- background-color: #414141;
- }
- /*
- RWD Rules
- */
- @media screen and (min-width: 750px) {
- #serverstatus{
- border-top-left-radius: 1em !important;
- }
- .greybackground.statustab{
- border-top-right-radius: 1em !important;
- }
- .standardContainer{
- padding-left: 2.4em;
- padding-right: 2.4em;
- padding-top: 2em;
- padding-bottom: 2em;
- }
- }
- @media screen and (max-width: 750px) {
- .toolbar {
- position: fixed;
- display: inline-block;
- width: 240px;
- background-color: white;
- top: 3.6em;
- right: 0;
- height: calc(100% - 51px);
- overflow-y: auto;
- margin-bottom: 1em;
- z-index: 9;
- padding: 1em;
- display:none;
- border-left: 1px solid rgb(206, 206, 206);
- }
- .menutoggle{
- display: inline-block !important;
- }
- #mainmenu{
- width: calc(100% - 1em);
- }
- .contentWindow{
- display: inline-block;
- width: 100%;
- margin-right: 0.4em;
- margin-left: 0.4em;
- }
- .functiontab{
- padding: 0em;
- }
- .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 {
- padding: 0rem 0rem !important;
- }
- #serverstatus.green{
- border-bottom: 0px solid transparent !important;
- }
- .greybackground.statustab{
- border-top-right-radius: 0em !important;
- padding: 2em 2em !important;
- }
- .standardContainer{
- padding-left: 1.2em;
- padding-right: 1.2em;
- padding-top: 0.6em;
- padding-bottom: 0.6em;
- }
-
- }
- .menudivider{
- font-size: 0.8em !important;
- color: #9c9c9c !important;
- padding-left: 0.6em;
- }
- /*
- Global rules overwrite
- */
- .ui.teal.button{
- background-color: #3d9c64 !important;
- }
- .ui.red.button:not(.basic){
- background-color: #cc3b3b !important;
- }
- .ui.menu .item{
- color: #5e5d5d;
- }
- .ui.secondary.vertical.menu .active.item{
- background-color: #414141;
- font-weight: 600;
- color: white;
- }
- .ui.secondary.vertical.menu .active.item .icon{
- animation: blinker 3s ease-in-out infinite;
- }
- .bluefont{
- color: #417ac1 !important;
- }
- @keyframes blinker {
- 50% {
- opacity: 50%;
- }
- }
- /*
- Status style overwrite
- */
- #serverstatus{
- height: 100%;
- }
- #statusTitle{
- font-weight: 300;
- }
- .statustab{
- border-radius: 0 !important;
- }
- .greybackground.statustab{
- background-color: #414141 !important;
- color: white;
-
- }
- .greybackground.statustab .ui.header:not(:first-child){
- margin-top: 1em;
- }
- .greybackground.statustab span,
- .greybackground.statustab h1,
- .greybackground.statustab h2,
- .greybackground.statustab h3,
- .greybackground.statustab h4,
- .greybackground.statustab h5 {
- color: white !important;
- }
- .greybackground.statustab .header{
- color: #b7b7b7 !important;
- }
- #serverstatus.green{
- background-color: #fefefe !important;
- border-right: 5px solid #3d9c64;
- }
- #serverstatus.green .sub.header{
- color: rgb(224, 224, 224);
- }
- #serverstatus.green i,
- #serverstatus.green #statusTitle{
- color: #3d9c64;
- }
- #serverstatus.green #statusText{
- color: #2c583d;
- }
- #serverstatus:not(.green) .dot-container{
- display:none;
- }
- #serverstatus:not(.green){
- background-color: white !important;
- background-image: url("img/plant.png");
- background-position: right;
- background-repeat: no-repeat;
- background-size: auto 100%;
- }
- #serverstatus:not(.green) #statusTitle,
- #serverstatus:not(.green) i,
- #serverstatus:not(.green) .sub.header{
- color: #4c4c4c;
- }
- .statustab{
- min-height: 5.5em;
- }
- #summaryTotalCount{
- font-size: 1.6em;
- font-weight: 300;
- }
- .statustab.summary{
- background-color: #f1f1f1 !important;
- border: 0px solid transparent !important;
- }
- .statustab.summary span, .statustab.summary i{
- color: rgb(37, 37, 37);
- }
- #networkActivityPlaceHolder{
- color:rgb(206, 206, 206);
- height: 200px;
- width: 100%;
- text-align: center;
- padding-top: 80px;
- display:none;
- }
- /* Decorative Animation */
- .dot-container {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 40px;
- position: absolute;
- bottom: 0.6em;
- right: 1.2em;
- }
-
- .dot {
- width: 6px;
- height: 6px;
- border-radius: 50%;
- background-color: #d9d9d9;
- margin-right: 6px;
- animation-name: dot-animation;
- animation-duration: 4s;
- animation-timing-function: ease-in-out;
- animation-iteration-count: infinite;
- }
-
- .dot:nth-child(1) {
- animation-delay: 0s;
- }
-
- .dot:nth-child(2) {
- animation-delay: 1s;
- }
-
- .dot:nth-child(3) {
- animation-delay: 2s;
- }
-
- .dot:nth-child(4) {
- animation-delay: 3s;
- }
-
- @keyframes dot-animation {
- 0% {
- background-color: #d9d9d9;
- transform: scale(1);
- }
- 50% {
- background-color: #3d9c64;
- transform: scale(1.5);
- }
- 100% {
- background-color: #d9d9d9;
- transform: scale(1);
- }
- }
- /*
- Access Control
- */
- .ui.very.compact.table th{
- padding-top: 0.2em;
- padding-bottom: 0.2em;
- }
- .ui.very.compact.table td{
- padding-top: 0.1em;
- padding-bottom: 0.1em;
- }
- #ipTable.disabled{
- opacity: 0.5;
- pointer-events: none;
- user-select: none;
- }
- /*
- TCP Proxy
- */
- .tcproxConfig td:first-child{
- position: relative;
- }
- .tcproxConfig.running td:first-child{
- border-left: 0.6em solid #21ba45 !important;
- }
- .tcproxConfig.stopped td:first-child{
- border-left: 0.6em solid #414141 !important;
- }
- .tcproxConfig td:first-child .statusText{
- position: absolute;
- bottom: 0.3em;
- left: 0.2em;
- font-size: 2em;
- color:rgb(224, 224, 224);
- opacity: 0.7;
- pointer-events: none;
- user-select: none;
- }
- /*
- Uptime Monitor
- */
- #utm{
- background-color: white;
- border-radius: 1em;
- }
- .domain{
- margin-bottom: 1em;
- position: relative;
- }
- .statusDot{
- height: 1.8em;
- border-radius: 0.4em;
- width: 0.4em;
- background-color: #e8e8e8;
- display:inline-block;
- cursor: pointer;
- margin-left: 0.1em;
- }
- .online.statusDot{
- background-color: #3bd671;
- }
- .error.statusDot{
- background-color: #f29030;
- }
- .offline.statusDot{
- background-color: #df484a;
- }
- .padding.statusDot{
- cursor: auto;
- }
- /*
- Global Area Network
- gan.html
- */
- .clickable{
- cursor: pointer;
- }
- .clickable:hover{
- opacity: 0.6;
- }
- #ganetRangeTable td{
- text-align: center;
- }
- .gansnetworks.disabled{
- opacity: 0.5;
- pointer-events: none;
- user-select: none;
- }
- .GANetMember.authorized{
- border-left: 6px solid #3c9c63 !important;
- }
- .GANetMember.unauthorized{
- border-left: 6px solid #9c3c3c !important;
- }
- /*
- Network Utilities
- */
- #traceroute_results{
- resize: none;
- background-color: #202020;
- color: white;
- }
- #traceroute_results::selection {
- background: #a9d1f3;
- }
|