123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- /*
- index.html style overwrite
- */
- body{
- background-color:#f6f6f6;
- }
- .functiontab{
- display:none;
- }
- .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;
- flex-wrap: wrap;
- margin-top: 4.6em;
- }
- .toolbar{
- width: 240px;
- min-width: 240px;
- }
- .contentWindow{
- padding: 1em;
- flex: 1;
- background-color: white;
- border-radius: 1em;
- margin-right: 2em;
- }
- .menutoggle{
- display: none !important;
- }
- .functiontab{
- padding: 1em;
- }
- .ui.divider{
- font-weight: 300;
- }
- @media screen and (max-width: 750px) {
- .toolbar {
- position: fixed;
- display: inline-block;
- width: 50%;
- background-color: white;
- top: 3.6em;
- right: 0;
- height: 100%;
- 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;
- }
-
- }
- .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: #c78e70 !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 .simplistic.icon{
- color: white;
- }
- .simplistic.icon{
- color: #414141;
- }
- .bluefont{
- color: #a9d1f3 !important;
- }
- /*
- Status style overwrite
- */
- #serverstatus.green{
- background-color: #7fbbc5 !important;
- }
- #serverstatus:not(.green){
- background-color: #5f5e5c !important;
- }
- .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);
- }
- /*
- 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;
- }
|