index.css 1.9 KB

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