123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852 |
- /*
- index.html style overwrite
- */
- /* Theme color palletes are defined in darktheme.css */
- /* Theme Toggle CSS */
- #themeColorButton{
- background-color: black;
- color: var(--text_color_inverted);
- }
- body.darkTheme #themeColorButton{
- background-color: white;
- }
- body{
- background-color:var(--theme_bg);
- }
- .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: var(--theme_bg_secondary);
- margin-bottom: 1em;
- border-bottom: 1px solid var(--theme_highlight);
- position: fixed;
- top: 0;
- width: 100%;
- z-index: 10;
- }
- .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;
- position: sticky;
- top: 4em;
- }
- .contentWindow{
- display: inline-block;
- width: calc(100% - 240px);
- vertical-align: top;
- background-color: var(--theme_bg_primary);
- border-radius: 1em;
- margin-right: 2em;
- }
- .menutoggle{
- display: none !important;
- }
- .rulesInstructions, .rulesInstructions span{
- color: white !important;
- }
- .ui.divider{
- font-weight: 300;
- }
- .serverstatusWrapper{
- padding-right: 0 !important;
- }
- .statisticWrapper{
- margin-top: 1em;
- padding-left: 0 !important;
- padding-bottom: 0 !important;
- padding-right: 1em !important;
- }
- .statisticWrapper .statustab{
- margin-right: 1em;
- }
- /* Message Box */
- #messageBox{
- position: fixed;
- bottom: 1em;
- right: 1em;
- display:none;
- max-width: 300px;
- z-index: 1000;
- }
- /* 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: var(--theme_background);
- }
- /*
- RWD Rules
- */
- @media screen and (min-width: 750px) {
- .standardContainer{
- padding-left: 2.4em;
- padding-right: 2.4em;
- padding-top: 2em;
- padding-bottom: 2em;
- }
- }
- @media screen and (max-width: 748px) {
- #serverstatus{
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
- .statisticWrapper .statustab{
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
- .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;
- }
- #serverstatus.green{
- border-bottom: 0px solid transparent !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: var(--item_color);
- }
- .ui.segment{
- box-shadow: none !important;
- }
- .ui.secondary.vertical.menu .active.item{
- background: var(--theme_background);
- font-weight: 600;
- color: white;
- }
- .ui.secondary.vertical.menu .active.item .icon{
- animation: blinker 3s ease-in-out infinite;
- }
- .basic.segment.advanceoptions{
- background-color: var(--theme_advance);
- border-radius: 1em;
- }
- .bluefont{
- color: #417ac1 !important;
- }
- @keyframes blinker {
- 50% {
- opacity: 50%;
- }
- }
- /*
- Status style overwrite
- */
- #serverstatus{
- height: 100%;
- border-radius: 1em;
- margin: 1em;
- }
- #statusTitle{
- font-weight: 300;
- }
- #serverstatus.green{
- background: linear-gradient(60deg, #27e7ff, #00ca52);
- }
- #serverstatus.green .sub.header{
- color: rgb(224, 224, 224);
- }
- #serverstatus.green i,
- #serverstatus.green #statusTitle{
- color: rgb(255, 255, 255);
- }
- #serverstatus.green #statusText{
- color: rgb(255, 255, 255);
- }
- #serverstatus:not(.green) .dot-container{
- display:none;
- }
- #serverstatus:not(.green){
- background: linear-gradient(215deg, rgba(38,60,71,1) 13%, rgba(2,3,42,1) 84%);
- }
- #serverstatus:not(.green) #statusTitle,
- #serverstatus:not(.green) i,
- #serverstatus:not(.green) .sub.header{
- color: white;
- }
- .statustab{
- min-height: 5.5em;
- margin: 1em;
- border-radius: 1em !important;
- }
- #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: white;
- transform: scale(1.5);
- }
- 100% {
- background-color: #d9d9d9;
- transform: scale(1);
- }
- }
- /* Remind message for user forgetting to click Apply button*/
- #applyButtonReminder{
- position: absolute;
- bottom:-1.6em;
- left: 0;
- font-weight: bolder;
- color: #faac26;
- display:none;
- }
- /*
- Default Site
- */
- #setroot{
- border-radius: 0.6em;
- }
- /*
- HTTP Proxy & Virtual Directory
- */
- #currentVirtualDirectoryAttachingHost{
- background: var(--theme_background);
- color: white;
- border-radius: 1em;
- font-weight: bolder;
- }
- .section.disabled{
- opacity: 0.5;
- user-select: none;
- pointer-events: none;
- }
- /*
- 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
- */
- .streamproxConfig td:first-child{
- position: relative;
- }
- .streamproxConfig.running td:first-child{
- border-left: 0.6em solid #01cb55 !important;
- }
- .streamproxConfig.stopped td:first-child{
- border-left: 0.6em solid #1b1b1b !important;
- }
- .streamproxConfig td:first-child .statusText{
- position: absolute;
- bottom: 0.1em;
- right: 0.2em;
- font-size: 1em;
- color:rgb(224, 224, 224);
- opacity: 0.7;
- pointer-events: none;
- user-select: none;
- }
- /*
- ACME Renewer Status Panel
- */
- .acmeRenewStateWrapper{
- padding: 1em;
- border-radius: 1em !important;
- }
- .acmeRenewStateWrapper .ui.header, .acmeRenewStateWrapper .sub.header{
- color: white !important;
- }
- .acmeRenewStateWrapper:not(.enabled){
- background: var(--theme_red) !important;
- }
- .acmeRenewStateWrapper.enabled{
- background: var(--theme_green) !important;
- }
- /*
- SSO Panel
- */
- .ssoRunningState{
- padding: 1em;
- border-radius: 1em !important;
- }
- .ssoRunningState .ui.header, .ssoRunningState .sub.header{
- color: white !important;
- }
- .ssoRunningState:not(.enabled){
- background: var(--theme_red) !important;
- }
- .ssoRunningState.enabled{
- background: var(--theme_green) !important;
- }
- /*
- Static Web Server
- */
- .webservRunningStateWrapper{
- padding: 1em;
- border-radius: 1em !important;
- }
- .webservRunningStateWrapper .ui.header, .webservRunningStateWrapper .sub.header{
- color: white !important;
- }
- .webservRunningStateWrapper:not(.enabled){
- background: var(--theme_red) !important;
- }
- .webservRunningStateWrapper.enabled{
- background: var(--theme_green) !important;
- }
- /*
- 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;
- }
- /*
- Quick Start Overview
- */
- #quickstart .serviceOption{
- position: relative;
- overflow: hidden;
- padding: 1em;
- background-color: rgb(240, 240, 240);
- border-radius: 0.6em;
- cursor: pointer;
- min-height: 250px;
- transition: opacity 0.1s ease-in-out;
- }
- #quickstart .serviceOption .activeOption{
- position: absolute;
- bottom: 0.2em;
- left: 0.2em;
- display:none;
- }
- #quickstart .serviceOption.active .activeOption{
- display: block;
- }
- #quickstart .serviceOption .titleWrapper{
- text-align: center;
- width: 100%;
- font-weight: bolder;
- font-size: 1.3em;
- }
- #quickstart .serviceOption :not(.titleWrapper){
- font-weight: bold;
- }
- #quickstart .serviceOption .themebackground{
- opacity: 0.2;
- position: absolute;
- right: 0;
- bottom: 0;
- margin-right: -1em;
- margin-bottom: -2em;
- pointer-events: none;
- user-select: none;
- }
- #quickstart .serviceOption:not(.active):hover{
- opacity: 0.8;
- }
- #quickstart .serviceOption.tls{
- background: var(--theme_green);
- color: white;
- }
- #quickstart .serviceOption.subdomain{
- background: var(--theme_background);
- color: white;
- }
- #quickstart .serviceOption.homepage{
- background: var(--theme_background_inverted);
- color: white;
- }
- #quickstart .finished.ui.button{
- background: var(--theme_green);
- color: white;
- }
- #tourModal{
- background-color: white;
- border-radius: 0.6em;
- padding: 1.4em;
- position: fixed;
- z-index: 999;
- width: 380px;
- display:none;
- border: 1px solid rgb(230, 230, 230);
- box-shadow: 3px 3px 11px -3px rgba(0,0,0,0.3);
- }
- /* Locations of tourModal */
- #tourModal[position="center"]{
- top: 200px;
- left: calc(50% - 190px);
- }
- #tourModal[position="topleft"]{
- top: 4em;
- left: 4em;
- }
- #tourModal[position="topright"]{
- top: 4em;
- right: 4em;
- }
- #tourModal[position="bottomleft"]{
- bottom: 4em;
- left: 4em;
- }
- #tourModal[position="bottomright"]{
- bottom: 4em;
- right: 4em;
- }
- #tourModal .tourStepButtonFinish{
- background: var(--theme_green) !important;
- color: white;
- }
- #tourModal .tourCloseButton{
- position: absolute;
- top: 0em;
- right: 0em;
- margin-top: -0.6em;
- margin-right: -0.6em;
- }
- #tourModal .nextStepFinish{
- display: none;
- }
- #tourModal.nofocus{
- box-shadow: 0 0 0 max(100vh, 100vw) rgba(0, 0, 0, .3);
- }
- #tourModalOverlay{
- position: fixed;
- top: 10em;
- left: 10em;
- width: 300px;
- height: 200px;
- pointer-events: none;
- z-index: 199;
- border-radius: 0.6em;
- box-shadow: 0 0 0 max(100vh, 100vw) rgba(0, 0, 0, .3);
- }
|