lablanca.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. span.status_red{
  2. font-weight: bold;
  3. color: #bb0000;
  4. }
  5. span.status_green{
  6. font-weight: bold;
  7. color: #00bb00;
  8. }
  9. span.status_yellow{
  10. font-weight: bold;
  11. color: #ff8800;
  12. }
  13. div#entry_header div.header_text{
  14. display: table-cell;
  15. vertical-align: top;
  16. width: 28%;
  17. margin: 0;
  18. padding: 1em;
  19. }
  20. div#entry_header div.header_text textarea{
  21. width: 100%;
  22. min-height: 12em;
  23. max-height: 36em;
  24. resize: vertical;
  25. }
  26. div#entry_header div#header_image{
  27. display: table-cell;
  28. vertical-align: top;
  29. width: 16%;
  30. margin: 0;
  31. padding: 1em;
  32. }
  33. div#entry_header div#header_image img{
  34. max-width: 100%;
  35. max-height: 10em;
  36. }
  37. div#entry_header div.header_text p{
  38. font-size: 75%;
  39. margin: 0.5em 1em 0.5em 1em;
  40. }
  41. div#section_prices table#prices{
  42. border-collapse: collapse;
  43. }
  44. div#section_prices table#prices td, th{
  45. border: 0.1em solid black;
  46. }
  47. div#section_prices table#prices table td, th{
  48. border: 0;
  49. }
  50. div#section_prices table#prices input[type='text']{
  51. max-width: 10em;
  52. }
  53. div#section_prices table#prices input[type='number']{
  54. max-width: 4em;
  55. }
  56. div#section_prices table#offers{
  57. width: 100%;
  58. }
  59. div#section_prices table#offers td{
  60. vertical-align: top;
  61. }
  62. div#section_prices table#offers td.large{
  63. width: 22%;
  64. }
  65. div#section_prices table#offers td.small{
  66. width: 9%;
  67. }
  68. div#section_prices table#offers input[type='text']{
  69. width: 100%;
  70. }
  71. div#section_prices table#offers textarea{
  72. width: 100%;
  73. min-height: 4em;
  74. max-height: 15em;
  75. resize: vertical;
  76. }
  77. div#section_prices table#offers input[type='number']{
  78. width: 5em;
  79. }
  80. div#screen_cover{
  81. background-color: #000000;
  82. opacity: 0;
  83. display: none;
  84. z-index: 900;
  85. transition: opacity 0.5s ease-in-out;
  86. width: 100%;
  87. height: 100%;
  88. position: fixed;
  89. top: 0;
  90. left: 0;
  91. right: 0;
  92. bottom: 0;
  93. }
  94. div#form_new_offer{
  95. opacity: 0;
  96. display: none;
  97. z-index: 1000;
  98. transition: opacity 1s ease-in-out;
  99. position: fixed;
  100. height: 80%;
  101. top: 10%;
  102. left: 10%;
  103. right: 10%;
  104. bottom: 10%;
  105. }
  106. div#form_new_offer table{
  107. width: 100%;
  108. }
  109. div#form_new_offer table td{
  110. vertical-align: top;
  111. }
  112. div#form_new_offer table td.large{
  113. width: 27%;
  114. }
  115. div#form_new_offer table td.small{
  116. width: 9%;
  117. }
  118. div#form_new_offer table input[type='text']{
  119. width: 100%;
  120. }
  121. div#form_new_offer table textarea{
  122. width: 100%;
  123. min-height: 4em;
  124. max-height: 15em;
  125. resize: vertical;
  126. }
  127. div#form_new_offer table input[type='number']{
  128. width: 5em;
  129. }
  130. div#form_new_offer div#controls{
  131. text-align: center;
  132. }
  133. div#form_new_offer div#controls input{
  134. margin: 2em 4em 2em 4em;
  135. }
  136. div.entry_schedule table.new_event{
  137. width: 80%;
  138. margin: auto;
  139. border-collapse: collapse;
  140. }
  141. div.entry_schedule table.new_event tr{
  142. width: 100%;
  143. }
  144. div.entry_schedule table.new_event th{
  145. width: 30%;
  146. background-color: #777777;
  147. }
  148. div.entry_schedule table.new_event th{
  149. padding-top: 1em;
  150. width: 30%;
  151. background-color: #777777;
  152. }
  153. div.entry_schedule table.new_event td{
  154. padding: 0.3em;
  155. text-align: center;
  156. width: 30%;
  157. background-color: #777777;
  158. }
  159. div.entry_schedule table.new_event td input{
  160. display: inline-block;
  161. }
  162. div.entry_schedule table.new_event td input[type='text']{
  163. width: 100%;
  164. display: inline-block;
  165. }
  166. div.entry_schedule table.new_event td textarea{
  167. display: inline-block;
  168. width: 100%;
  169. resize: vertical;
  170. }
  171. div.entry_schedule table.new_event td select{
  172. width: 100%;
  173. display: inline-block;
  174. }
  175. div.entry_schedule table.new_event td input[type='number']{
  176. width: 4em;
  177. display: inline-block;
  178. }