index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. html,body{
  2. margin: 0;
  3. padding: 0;
  4. width: 100%;
  5. height: 100%;
  6. overflow: hidden;
  7. background-color: #726A8B;
  8. background-image: url('//www.omnimaga.org/Themes/omnimaga_retro/images/bg.png');
  9. background-repeat: repeat-x;
  10. background-attachment: fixed;
  11. background-position: center top;
  12. background-clip: border-box;
  13. background-origin: padding-box;
  14. background-size: auto auto;
  15. color: white;
  16. }
  17. #loading{
  18. display: none;
  19. position: absolute;
  20. left: 0px;
  21. top: 0px;
  22. width: 100%;
  23. height: 100%;
  24. z-index: 100;
  25. background-color: rgba(0, 0, 0, 0.5);
  26. }
  27. #loading>div{
  28. background-image: url(img/loading.gif);
  29. left: 50%;
  30. top: 50%;
  31. position: relative;
  32. width: 20px;
  33. height: 20px;
  34. background-repeat: no-repeat;
  35. background-position: center center;
  36. }
  37. .ui-state-default.ui-widget .link{
  38. text-decoration: underline;
  39. cursor: pointer;
  40. color: blue;
  41. }
  42. .countries-autocomplete{
  43. color: black;
  44. }
  45. .ui-dialog.ui-front{
  46. z-index: 101;
  47. }
  48. .ui-widget-content{
  49. background-color: rgba(0,0,0,0.5) !important;
  50. }
  51. .transparent{
  52. background-color: transparent !important;
  53. background-image: none !important;
  54. }
  55. .left{
  56. float: left;
  57. clear: none;
  58. }
  59. .right{
  60. float: right;
  61. clear: none;
  62. }
  63. .clearR{
  64. clear: right;
  65. }
  66. .clearL{
  67. clear: left;
  68. }
  69. .fill{
  70. width: 100%;
  71. display: inline-block;
  72. }
  73. .server-prop{
  74. font-weight: bold;
  75. font-style: italic;
  76. cursor: pointer;
  77. border-style: solid;
  78. border-color: black;
  79. border-width: 1px;
  80. border-radius: 3px;
  81. }
  82. h1,h2,h3,h4,ul,li{
  83. margin: 0;
  84. }
  85. form,.table{
  86. display: table;
  87. }
  88. form label, form label + span,.cell{
  89. display: table-cell;
  90. padding: 3px;
  91. }
  92. form label{
  93. font-weight: bold;
  94. }
  95. form label + span>*{
  96. width: 100%;
  97. }
  98. .row{
  99. display: table-row;
  100. }
  101. .ui-tabs.ui-widget-content.ui-widget{
  102. overflow: auto;
  103. }
  104. .tree{
  105. border-collapse: collapse;
  106. }
  107. .tree tr td{
  108. color: #777;
  109. }
  110. .tree tr:not(.treegrid-collapsed) td{
  111. border-color: #777;
  112. border-bottom-style: solid;
  113. border-bottom-width: 1px;
  114. padding-right: 3px;
  115. }