lablanca.css 3.4 KB

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