123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- html,body{
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- background-color: #726A8B;
- background-image: url('//www.omnimaga.org/Themes/omnimaga_retro/images/bg.png');
- background-repeat: repeat-x;
- background-attachment: fixed;
- background-position: center top;
- background-clip: border-box;
- background-origin: padding-box;
- background-size: auto auto;
- color: white;
- }
- #loading{
- display: none;
- position: absolute;
- left: 0px;
- top: 0px;
- width: 100%;
- height: 100%;
- z-index: 100;
- background-color: rgba(0, 0, 0, 0.5);
- }
- #loading>div{
- background-image: url(img/loading.gif);
- left: 50%;
- top: 50%;
- position: relative;
- width: 20px;
- height: 20px;
- background-repeat: no-repeat;
- background-position: center center;
- }
- .ui-state-default.ui-widget .link{
- text-decoration: underline;
- cursor: pointer;
- color: blue;
- }
- .countries-autocomplete{
- color: black;
- }
- .ui-dialog.ui-front{
- z-index: 101;
- }
- .ui-widget-content{
- background-color: rgba(0,0,0,0.5) !important;
- }
- .transparent{
- background-color: transparent !important;
- background-image: none !important;
- }
- .left{
- float: left;
- clear: none;
- }
- .right{
- float: right;
- clear: none;
- }
- .clearR{
- clear: right;
- }
- .clearL{
- clear: left;
- }
- .fill{
- width: 100%;
- display: inline-block;
- }
- .server-prop{
- font-weight: bold;
- font-style: italic;
- cursor: pointer;
- border-style: solid;
- border-color: black;
- border-width: 1px;
- border-radius: 3px;
- }
- h1,h2,h3,h4,ul,li{
- margin: 0;
- }
- form,.table{
- display: table;
- }
- form label, form label + span,.cell{
- display: table-cell;
- padding: 3px;
- }
- form label{
- font-weight: bold;
- }
- form label + span>*{
- width: 100%;
- }
- .row{
- display: table-row;
- }
- .ui-tabs.ui-widget-content.ui-widget{
- overflow: auto;
- }
- .tree{
- border-collapse: collapse;
- }
- .tree tr td{
- color: #777;
- }
- .tree tr:not(.treegrid-collapsed) td{
- border-color: #777;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- padding-right: 3px;
- }
|