blog.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* Blog main page */
  2. div#post_list img.post_list_image{
  3. float: left;
  4. background-color: #ffffff;
  5. border: 0.1em solid #003300;
  6. border-radius: 0.3em;
  7. margin: 0 0.7em 0.7em 0.7em;
  8. max-width: 5em;
  9. max-height: 3em;
  10. }
  11. div#post_list table.post_list_footer{
  12. font-size: 80%;
  13. width: 100%;
  14. }
  15. div#post_list table.post_list_footer td.comment_counter{
  16. font-style: italic;
  17. text-align: right;
  18. }
  19. div#post_list span.tags{
  20. font-size: 80%;
  21. font-style: italic;
  22. }
  23. /* Post view page */
  24. div#post{
  25. width: 90%;
  26. max-width: 80em;
  27. margin: 1em auto 1em auto;
  28. }
  29. div#post img#post_main_image{
  30. display: block;
  31. max-height: 11em;
  32. margin: 0.5em auto 1em auto;
  33. border: 0.1em solid #003400;
  34. border-radius: 0.5em;
  35. background-color: #ffffff;
  36. }
  37. div#post div#image_reel{
  38. overflow-x: scroll;
  39. border: 0.1em solid #003400;
  40. border-radius: 0.3em;
  41. height: 7em;
  42. background-color: #334433;
  43. padding: 0.5em;
  44. }
  45. div#project_edit div#image_reel img{
  46. vertical-align: middle;
  47. max-height: 5em;
  48. max-width: 7em;
  49. border: 0.2em solid #003400;
  50. border-radius: 0.1em;
  51. margin: 0.5em;
  52. background-color: #ffffff;
  53. }
  54. table#prev_next{
  55. width: 90%;
  56. max-width: 60em;
  57. border-collapse: collapse;
  58. margin: 1em auto 1em auto;
  59. }
  60. table#prev_next td{
  61. width: 50%;
  62. text-align: center
  63. padding: 0.5em;
  64. }
  65. table#prev_next td#prev{
  66. border-right: 0.03em solid #00440088;
  67. text-align: right;
  68. }
  69. table#prev_next td#next{
  70. border-left: 0.03em solid #00440088;
  71. }
  72. table#prev_next td span.info{
  73. font-size: 80%;
  74. }
  75. table#prev_next td span.title{
  76. font-weight: bold;
  77. }