blog.css 2.4 KB

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