blog.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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: 0em;
  41. margin-bottom: 0em;
  42. /* display: none; */
  43. max-height: 0em;
  44. overflow-y: hidden;
  45. transition: max-height 0.6s ease-in-out;
  46. }
  47. ul.post_list li{
  48. padding: 0.2em 0 0.2em 0;
  49. }
  50. div.post_list_image_container{
  51. text-align: center;
  52. }
  53. img.post_list_image{
  54. float: center;
  55. max-width: 15em;
  56. max-width: 90%;
  57. max-height: 9em;
  58. margin: 0.5em 1em 0.5em 0.5em;
  59. border: 0.15em solid #333333;
  60. border-radius: 0.2em;
  61. box-shadow: 0 0 0.5em #111111;
  62. }
  63. /* Pager */
  64. div#pager{
  65. text-align: center;
  66. }
  67. div#pager table#pager{
  68. margin: auto;
  69. }
  70. table#pager div.entry{
  71. padding: 0.1em 0.4em 0.1em 0.4em;
  72. }
  73. table#pager td.pager_current div.entry{
  74. background-color: #999999;
  75. }
  76. div.image_container{
  77. text-align: center;
  78. }
  79. img.post_image{
  80. max-height: 25em;
  81. max-width: 90%;
  82. border: 0.15em solid #333333;
  83. border-radius: 0.2em;
  84. box-shadow: 0 0 0.5em #111111;
  85. }
  86. table#secondary_images{
  87. width: 100%;
  88. display: inline;
  89. }
  90. table#secondary_images td{
  91. padding: 0.1em;
  92. }
  93. table#secondary_images img{
  94. max-height: 15em;
  95. max-width: 90%;
  96. display: inline;
  97. border: 0.1em solid #333333;
  98. border-radius: 0.1em;
  99. box-shadow: 0 0 0.3em #111111;
  100. }
  101. table.post_footer{
  102. width: 100%;
  103. font-style: italic;
  104. font-size: 80%;
  105. }
  106. img.share_icon{
  107. height: 2em;
  108. width: 2em;
  109. vertical-align: middle;
  110. }
  111. td.r_share{
  112. text-align: right;
  113. }
  114. /* Search page */
  115. h2.post_search_title{
  116. margin-bottom: 0em;
  117. margin-top: 0.2em;
  118. }
  119. hr.post_search_separator{
  120. margin-top: 0;
  121. margin-bottom: 0;
  122. padding-top: 0;
  123. padding-bottom: 0;
  124. }
  125. table.post_footer_search td{
  126. margin: 0;
  127. padding: 0;
  128. }
  129. table.post_search_content td{
  130. vertical-align: top;
  131. }
  132. p.post_search_text{
  133. margin-top: 0;
  134. }
  135. img.post_search_image{
  136. float: left;
  137. max-width: 5em;
  138. max-height: 5em;
  139. margin: 0.5em;
  140. border: 0.1em solid #333333;
  141. border-radius: 0.1em;
  142. box-shadow: 0 0 0.2em #111111;
  143. }