lablanca.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /* Table to present posts and photos on the same row */
  2. div#content_table{
  3. display: table;
  4. }
  5. div#content_table div.content_tr{
  6. display: table-row;
  7. }
  8. div#content_table div#content_tr_intro{
  9. width: 100%;
  10. }
  11. div#content_table div#content_tr_intro div.content_td{
  12. width: 100%;
  13. }
  14. div#content_table div.content_tr div.content_td{
  15. width: 50%;
  16. display: table-cell;
  17. }
  18. div#content_table div.content_tr div#content_td_schedule{
  19. width: 50%;
  20. }
  21. div#content_table div.content_tr div#content_td_prices{
  22. width: 50%;
  23. }
  24. div#content_table div.content_tr div#content_td_prices div#prices{
  25. width: 100%;
  26. }
  27. div.horiz{
  28. display: inline-block;
  29. }
  30. div.horiz img{
  31. display: inline;
  32. vertical-align: top;
  33. }
  34. div.horiz p{
  35. display: inline;
  36. vertical-align: top;
  37. }
  38. div#past_festivals ul li{
  39. margin: 0.5em;
  40. }
  41. /* fiestas.php */
  42. div#festivals_image_top_container{
  43. display: block;
  44. text-align: center;
  45. margin: 0.5em auto 0.5em auto;
  46. }
  47. div#festivals_image_top_container div#festivals_image_container{
  48. display: inline-block;
  49. border: 0.1em solid #001133;
  50. border-radius: 1em;
  51. box-shadow: 0 0 1em #111122;
  52. margin: 0.8em auto 0.8em auto;
  53. }
  54. div#festivals_image_top_container div#festivals_image_container img#festivals_image{
  55. border-radius: 1em;
  56. max-width: 60em;
  57. max-height: 20em;
  58. }
  59. /* programa.php */
  60. div#schedule{
  61. display: inline-block;
  62. vertical-align: top;
  63. margin-top: 2em;
  64. margin-right: 1em;
  65. text-align: center
  66. width: 100%;
  67. }
  68. div#schedule div.button{
  69. margin: 1em 0.5em 1em 0.5em;
  70. padding: 0.5em;
  71. display: inline-block;
  72. vertical-align: top;
  73. width: 40%;
  74. }
  75. div.day_title h4{
  76. font-size: 120%;
  77. margin: 0;
  78. padding: 0.5em;
  79. }
  80. div.day_schedule{
  81. overflow: hidden;
  82. max-height: 0em;
  83. transition: max-height 0.9s ease-in-out;
  84. }
  85. table.schedule{
  86. border-collapse: collapse;
  87. }
  88. table.schedule td{
  89. vertical-align: top;
  90. padding-left: 0.5em;
  91. padding-right: 0.5em;
  92. padding-bottom: 1em;
  93. }
  94. table.schedule td span.time{
  95. font-weight: bold;
  96. }
  97. table.schedule td span.title{
  98. font-weight: bold;
  99. font-style: italic;
  100. font-size: 110%;
  101. color: #001133;
  102. margin: 0 0.5em 0.5em 0.3em;
  103. letter-spacing: 0.05em;
  104. }
  105. table.schedule td div.description{
  106. margin: 0.3em 2em 0.5em 1.2em;
  107. color: #222222;
  108. }
  109. table.schedule td.timeline{
  110. width: 0.06em;
  111. padding: 0 0 1em 0;
  112. border-left: dotted #333333 0.1em;
  113. padding-left: 0;
  114. padding-right: 0;
  115. }
  116. table.schedule td.timeline img.timeline_dot{
  117. width: 1em;
  118. height: 1em;
  119. margin-left: -0.47em;
  120. margin-right: -0.41em;
  121. margin-top: 0.2em;
  122. }
  123. table.schedule div.location{
  124. font-size: 80%;
  125. border-collapse: collapse;
  126. margin-left: 2em;
  127. }
  128. table.schedule div.location img{
  129. max-height: 1.3em;
  130. vertical-align: middle;
  131. }
  132. table.schedule div.location span.address{
  133. font-style: italic;
  134. }
  135. div#map_container{
  136. display: none;
  137. opacity: 0;
  138. position: fixed;
  139. top:0;
  140. bottom:0;
  141. left:0;
  142. right:0;
  143. width: 100%;
  144. height: 100%;
  145. background-color: #33333333;
  146. }
  147. div#map_container div#map{
  148. background-color: #ffffff;
  149. width: 70%;
  150. height: 50%;
  151. margin: 15% 15% 25% 15%;
  152. }
  153. /* fiestas.php */
  154. div#prices{
  155. display: inline-block;
  156. vertical-align: top;
  157. margin-top: 2em;
  158. margin-right: 0;
  159. text-align: center;
  160. }
  161. div#prices h3, h4{
  162. text-align: left;
  163. }
  164. div#prices div.entry{
  165. display: block;
  166. vertical-align: top;
  167. text-align: left;
  168. }
  169. div#prices div.entry h4{
  170. margin-top: 0.5em;
  171. margin-left: 0.5em;
  172. }
  173. div#prices table#table_days{
  174. width: 90%;
  175. border-collapse: collapse;
  176. margin: auto;
  177. }
  178. div#prices table#table_days td{
  179. border-top: 0.2em solid #aaaaaa;
  180. padding: 0.5em 2em 0.5em 2em;
  181. }
  182. div#prices table#table_days td.price{
  183. color: #001133;
  184. font-weight: bold;
  185. font-size: 110%;
  186. }
  187. div#prices td.price{
  188. min-width: 4em;
  189. text-align: right;
  190. }
  191. div#prices table#table_offers{
  192. width: 90%;
  193. border-collapse: collapse;
  194. margin: auto;
  195. }
  196. div#prices table#table_offers td{
  197. border-top: 0.2em solid #aaaaaa;
  198. }
  199. div#prices table#table_offers td.price{
  200. min-width: 4em;
  201. text-align: right;
  202. color: #001133;
  203. font-weight: bold;
  204. font-size: 110%;
  205. }
  206. div#prices table#table_offers p.description{
  207. margin: 0.2em 0.2em 0.5em 2em;
  208. font-size: 90%;
  209. font-style: italic;
  210. color: #444444;
  211. }
  212. /* No fiestas */
  213. ul#no_fiestas{
  214. margin: 0 2em 2em 2em;
  215. }
  216. ul#no_fiestas li{
  217. margin-top: 2em;
  218. list-style-image: url('https://margolariak.com/img/misc/ul.png');
  219. list-style-type: circle;
  220. }
  221. ul#no_fiestas li span{
  222. font-weight: bold;
  223. font-style: italic;
  224. font-size: 110%;
  225. color: #001133;
  226. margin-right: 0.3em;
  227. letter-spacing: 0.05em;
  228. }