index.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /* Festival section */
  2. table.festival_section_table{
  3. width: 100%;
  4. }
  5. table.festival_section_table tr{
  6. width: 100%;
  7. height: 100%;
  8. }
  9. table.festival_section_table tr td{
  10. min-width: 50%;
  11. height: 100%;
  12. vertical-align: top;
  13. padding-bottom: 1em;
  14. }
  15. table.festival_section_table tr td div.entry{
  16. height: 95%;
  17. }
  18. table.festival_section_table tr td div#festivals_summary{
  19. /* min-height: 15em; */
  20. }
  21. table.festival_section_table tr td div#festivals_summary img{
  22. display: inline-block;
  23. max-width: 40%;
  24. max-height: 15em;
  25. vertical-align: top;
  26. float: left;
  27. margin-right: 2em;
  28. }
  29. table.festival_section_table tr td div#festival_entry_map{
  30. text-align: center;
  31. }
  32. table.festival_section_table tr td div#festival_entry_map h3{
  33. text-align: left;
  34. }
  35. table.festival_section_table tr td div#festival_entry_map iframe{
  36. width: 80%;
  37. margin: auto;
  38. min-height: 15em;
  39. max-height: 20em;
  40. }
  41. table.festival_section_table tr td div.festival_schedule span.title{
  42. font-weight: bold;
  43. /* font-size: 105%; */
  44. margin-left: 1em;
  45. }
  46. table.festival_section_table tr td div.festival_schedule span.description{
  47. font-style: italic;
  48. margin-left: 2em;
  49. font-size: 90%;
  50. }
  51. table.festival_section_table tr td div.festival_schedule table.location{
  52. border-collapse: collapse;
  53. margin: 0.5em 2em 0.5em 3em;
  54. font-size: 80%;
  55. }
  56. table.festival_section_table tr td div.festival_schedule table.location td{
  57. min-width: initial;
  58. height: initial;
  59. vertical-align: middle;
  60. padding-bottom: 0;
  61. }
  62. /* Upcoming activity section */
  63. div.section{
  64. margin-bottom: 2em;
  65. }
  66. div#upcoming_activity{
  67. display: table;
  68. }
  69. div.table div.tr{
  70. display: table-row;
  71. }
  72. div.table div.tr div.td{
  73. display: table-cell;
  74. vertical-align: top;
  75. }
  76. /* Contains the image of the upcoming activity */
  77. div#upcoming_image{
  78. display: inline-block;
  79. vertical-align: top;
  80. }
  81. div#upcoming_image img{
  82. max-height: 10em;
  83. max-width: 10em;
  84. margin: 1em;
  85. border: 0.15em solid #333333;
  86. border-radius: 0.2em;
  87. box-shadow: 0 0 0.5em #111111;
  88. }
  89. /* Contains the text of the upcoming activity */
  90. div#upcoming_text{
  91. display: inline-block;
  92. vertical-align: middle;
  93. }
  94. /* Contains the details of the upcoming activity */
  95. div#upcoming_details{
  96. display: inline-block;
  97. vertical-align: middle;
  98. float: right;
  99. margin-right: 0;
  100. text-align: center;
  101. padding-bottom: 2em;
  102. }
  103. div#upcoming_details table{
  104. border-collapse: collapse;
  105. text-align: left;
  106. font-style: italic;
  107. font-size: 80%;
  108. margin: 2em 2em 2em 4em;
  109. }
  110. div#upcoming_details table tr{
  111. border-bottom: 0.2em solid #7777aa;
  112. border-top: 0.2em solid #7777aa;
  113. border-collapse: collapse;
  114. }
  115. div#upcoming_details table td{
  116. padding: 0.3em;
  117. }
  118. /* Table to present posts and photos on the same row */
  119. div#content_table{
  120. display: table;
  121. }
  122. div#content_table div.content_row{
  123. display: table-row;
  124. }
  125. div#content_table div.content_row div.content_cell{
  126. width: 50%;
  127. display: table-cell;
  128. }
  129. div#content_table div.content_row div#cell_posts div.section{
  130. margin-right: 1em;
  131. }
  132. div#content_table div.content_row div#cell_photos div.section{
  133. margin-left: 1em;
  134. }
  135. div#content_table div.content_row div.content_cell div.section div.entry{
  136. padding: 1em;
  137. }
  138. /* Section of the latest posts */
  139. div.post img{
  140. max-width: 7em;
  141. max-height: 9em;
  142. float: left;
  143. margin: 0.5em 1em 0.5em 0.5em;
  144. border: 0.1em solid #112244;
  145. /* border: 0.15em solid #333333; */
  146. /* border-radius: 0.2em; */
  147. /* box-shadow: 0 0 0.5em #111111; */
  148. }
  149. table.post_table p{ /*TODO fix*/
  150. /*NOW margin-left: 0.5em; */
  151. }
  152. /* contains the date for each recent post */
  153. div#content_table div.content_row div.content_cell div.section div.entry span{
  154. margin-right: 1em;
  155. display: block;
  156. text-align: right;
  157. /* float: right; */
  158. font-style: italic;
  159. font-size: 80%;
  160. }
  161. /* Links to each section */
  162. a.go_to_section{
  163. float: right;
  164. }
  165. /* Photos table */
  166. table#table_photos{
  167. table-layout: fixed;
  168. position: relative;
  169. width: 100%;
  170. }
  171. table#table_photos td{
  172. padding: 0.2em;
  173. text-align: center;
  174. }
  175. table#table_photos img{
  176. max-width: 90%;
  177. max-height: 10em;
  178. border: 0.1em solid #112244;
  179. /* border: 0.1em solid #333333; */
  180. /* box-shadow: 0 0 0.8em #000000; */
  181. /* border-radius: 0.2em */
  182. }
  183. div#latest_activities{
  184. display: block;
  185. margin-top: 2em;
  186. }
  187. div.activity_image{
  188. display: inline-block;
  189. vertical-align: top;
  190. max-width: 40%;
  191. max-height: 15em;
  192. text-align: center;
  193. }
  194. table.latest_activity td {
  195. vertical-align: top;
  196. }
  197. table.latest_activity td.latest_activity_image{
  198. max-width: 30%;
  199. }
  200. div#latest_activities img{
  201. /* max-width: 40%; */
  202. max-height: 10em;
  203. margin: 0.5em 1em 0.5em 0.5em;
  204. border: 0.1em solid #112244;
  205. /* border: 0.15em solid #333333; */
  206. /* border-radius: 0.2em; */
  207. /* box-shadow: 0 0 0.5em #111111; */
  208. }
  209. div.activity_text{
  210. display: inline-block;
  211. vertical-align: top;
  212. padding: 1em;
  213. }