blog.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* Blog main page */
  2. dov#content{
  3. display: table;
  4. }
  5. div#content div#content_row{
  6. display: table-row;
  7. }
  8. div#content div#content_row div.content_cell{
  9. padding: 1em;
  10. display: table-cell;
  11. }
  12. div#post_list img.post_list_image{
  13. float: left;
  14. background-color: #ffffff;
  15. border: 0.1em solid #003300;
  16. border-radius: 0.3em;
  17. margin: 0 0.7em 0.7em 0.7em;
  18. max-width: 5em;
  19. max-height: 3em;
  20. }
  21. div#post_list table.post_list_footer{
  22. font-size: 80%;
  23. width: 100%;
  24. }
  25. div#post_list table.post_list_footer td.comment_counter{
  26. font-style: italic;
  27. text-align: right;
  28. }
  29. div#post_list span.tags{
  30. font-size: 80%;
  31. font-style: italic;
  32. }
  33. /* Post view page */
  34. div#content_cell_post{
  35. width: 75%;
  36. }
  37. div#content_cell_info{
  38. width: 25%;
  39. min-width: 8em;
  40. max-width: 20em;
  41. }
  42. div#post img#post_main_image{
  43. display: block;
  44. max-height: 11em;
  45. margin: 0.5em auto 1em auto;
  46. border: 0.1em solid #003400;
  47. border-radius: 0.5em;
  48. background-color: #ffffff;
  49. }
  50. div#post div#image_reel{
  51. overflow-x: scroll;
  52. border: 0.1em solid #003400;
  53. border-radius: 0.3em;
  54. height: 7em;
  55. background-color: #334433;
  56. padding: 0.5em;
  57. }
  58. div#post div#image_reel img{
  59. vertical-align: middle;
  60. max-height: 5em;
  61. max-width: 7em;
  62. border: 0.2em solid #003400;
  63. border-radius: 0.1em;
  64. margin: 0.5em;
  65. background-color: #ffffff;
  66. }
  67. div#info table#post_details td{
  68. width: 50%;
  69. padding: 0.5em 1em 0.5em 1em;
  70. }
  71. div#info div#info_date{
  72. text-align: center;
  73. font-style: italic;
  74. font-size: 70%;
  75. opacity: 80%;
  76. }
  77. div#info div#info_share{
  78. text-align: center;
  79. }
  80. div#info div#info_tags{
  81. font-size: 80%;
  82. opacity: 90%;
  83. }
  84. div#info table#prev_next{
  85. border-collapse: collapse;
  86. margin: 1em auto 1em auto;
  87. }
  88. div#info table#prev_next td{
  89. width: 50%;
  90. padding: 0.5em;
  91. }
  92. div#info table#prev_next td#prev{
  93. border-right: 0.03em solid #00440088;
  94. margin-right: 0.5em;
  95. text-align: right;
  96. }
  97. div#info table#prev_next td#next{
  98. border-left: 0.03em solid #00440088;
  99. margin-left: 0.5em;
  100. text-align: left;
  101. }
  102. div#info table#prev_next td span.info{
  103. font-size: 80%;
  104. }
  105. div#info table#prev_next td span.title{
  106. font-weight: bold;
  107. }