index.css 1.9 KB

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