blog.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. div#left_column{
  2. width: 22%;
  3. display: inline-block;
  4. vertical-align: top;
  5. }
  6. div#right_column{
  7. width: 22%;
  8. display: inline-block;
  9. vertical-align: top;
  10. float: right;
  11. }
  12. div#middle_column{
  13. width: 50%;
  14. display: inline-block;
  15. vertical-align: top;
  16. margin-left: 2%;
  17. }
  18. /* Search form */
  19. div#search_panel{
  20. /* padding: 0 1em 1em 1em; */
  21. margin-bottom: 1em;
  22. border-top: 0.1em solid #000011;
  23. text-align: center;
  24. }
  25. div#search_panel div#search_panel_inputs{
  26. text-align: center;
  27. }
  28. div#search_panel input{
  29. width: 90%;
  30. }
  31. /* Archive */
  32. div.list_year{
  33. margin-left: 1em;
  34. /* display: none; */
  35. max-height: 0em;
  36. overflow-y: hidden;
  37. transition: max-height 0.6s ease-in-out;
  38. }
  39. ul.post_list{
  40. margin-top: 0.5em;
  41. margin-bottom: 0.5em;
  42. /* display: none; */
  43. max-height: 0em;
  44. overflow-y: hidden;
  45. transition: max-height 0.6s ease-in-out;
  46. }
  47. div.post_list_image_container{
  48. text-align: center;
  49. }
  50. img.post_list_image{
  51. float: center;
  52. max-width: 15em;
  53. max-width: 90%;
  54. max-height: 9em;
  55. margin: 0.5em 1em 0.5em 0.5em;
  56. border: 0.15em solid #333333;
  57. border-radius: 0.2em;
  58. box-shadow: 0 0 0.5em #111111;
  59. }
  60. /* Pager */
  61. div#pager{
  62. text-align: center;
  63. }
  64. div#pager table#pager{
  65. margin: auto;
  66. }
  67. table#pager div.entry{
  68. padding: 0.1em 0.4em 0.1em 0.4em;
  69. }
  70. table#pager td.pager_current div.entry{
  71. background-color: #999999;
  72. }
  73. div.image_container{
  74. text-align: center;
  75. }
  76. img.post_image{
  77. max-height: 25em;
  78. max-width: 90%;
  79. border: 0.15em solid #333333;
  80. border-radius: 0.2em;
  81. box-shadow: 0 0 0.5em #111111;
  82. }
  83. table#secondary_images{
  84. width: 100%;
  85. display: inline;
  86. }
  87. table#secondary_images td{
  88. padding: 0.1em;
  89. }
  90. table#secondary_images img{
  91. max-height: 15em;
  92. max-width: 90%;
  93. display: inline;
  94. border: 0.1em solid #333333;
  95. border-radius: 0.1em;
  96. box-shadow: 0 0 0.3em #111111;
  97. }
  98. table.post_footer{
  99. width: 100%;
  100. font-style: italic;
  101. font-size: 80%;
  102. }
  103. img.share_icon{
  104. height: 2em;
  105. width: 2em;
  106. vertical-align: middle;
  107. }
  108. td.r_share{
  109. text-align: right;
  110. }
  111. /* Search page */
  112. h2.post_search_title{
  113. margin-bottom: 0em;
  114. margin-top: 0.2em;
  115. }
  116. hr.post_search_separator{
  117. margin-top: 0;
  118. margin-bottom: 0;
  119. padding-top: 0;
  120. padding-bottom: 0;
  121. }
  122. table.post_footer_search td{
  123. margin: 0;
  124. padding: 0;
  125. }
  126. table.post_search_content td{
  127. vertical-align: top;
  128. }
  129. p.post_search_text{
  130. margin-top: 0;
  131. }
  132. img.post_search_image{
  133. float: left;
  134. max-width: 5em;
  135. max-height: 5em;
  136. margin: 0.5em;
  137. border: 0.1em solid #333333;
  138. border-radius: 0.1em;
  139. box-shadow: 0 0 0.2em #111111;
  140. }