index.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* Upcoming activity section */
  2. div#upcoming_activity{
  3. display: block;
  4. }
  5. div.table div.tr{
  6. display: block;
  7. }
  8. div.table div.tr div.td{
  9. display: block;
  10. }
  11. /* Contains the image of the upcoming activity */
  12. div#upcoming_image{
  13. text-align: center;
  14. display: block;
  15. }
  16. div#upcoming_image img{
  17. max-height: initial;
  18. max-width: 85%;
  19. max-height: 16em;
  20. border: 0.1em solid #333333;
  21. border-radius: 0.1em;
  22. box-shadow: 0 0 0.2em #111111;
  23. }
  24. /* Contains the text of the upcoming activity */
  25. div#upcoming_text{
  26. display: block;
  27. }
  28. /* Contains the details of the upcoming activity */
  29. div#upcoming_details{
  30. display: block;
  31. float: initial;
  32. }
  33. div#upcoming_details table{
  34. margin: auto;
  35. }
  36. /* Section of the latest posts */
  37. /*div#latest_posts{
  38. display: block;
  39. width: initial;
  40. }*/
  41. /* Section containing the latest photos */
  42. /*div#latest_photos{
  43. float: initial;
  44. display: block;
  45. width: initial;
  46. }*/
  47. div#content_table{
  48. display: block;
  49. }
  50. div#content_table div.content_row{
  51. display: inline;
  52. }
  53. div#content_table div.content_row div.content_cell{
  54. padding: 0;
  55. width: 100%;
  56. display: block;
  57. margin-bottom: 2em;
  58. }
  59. div#content_table div.content_row div#cell_posts div.section{
  60. margin-right: 0;
  61. }
  62. div#content_table div.content_row div#cell_photos div.section{
  63. margin-left: 0;
  64. }