index.css 1.5 KB

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