blog.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* Blog main page. */
  2. section#post_list article img{
  3. display: inline-block;
  4. vertical-align:top;
  5. max-width: 10em;
  6. max-height: 8em;
  7. border: 0.1em solid #000000;
  8. border-radius: 0.2em;
  9. margin: 0.8em;
  10. float: left;
  11. }
  12. section#post_list article p{
  13. display: block;
  14. vertical-align: top;
  15. mergin-top: 0.5em;
  16. }
  17. section#post_list article div.post_details{
  18. border-top: 0.2em solid #cccccc;
  19. font-size: 90%;
  20. color: #444455;
  21. margin: 1em 0.5em;
  22. }
  23. section#post_list article div.post_details > div{
  24. display: inline-block;
  25. margin: 0;
  26. padding: 0.5em 1em;
  27. vertical-align: top;
  28. font-size: 90%;
  29. font-style: italic;
  30. width: 40%;
  31. }
  32. section#post_list article div.post_details div.post_details_comments{
  33. text-align: right;
  34. }
  35. /* Single post page. */
  36. section#post article img#main_image{
  37. display: block;
  38. max-width: 60em;
  39. max-height: 20em;
  40. border: 0.3em solid #000000;
  41. border-radius: 0.3em;
  42. margin: 1em auto 1em auto;
  43. }
  44. section#post article div.post_details{
  45. border-top: 0.2em solid #cccccc;
  46. font-size: 90%;
  47. color: #444455;
  48. margin: 1em 0.5em;
  49. text-align: right;
  50. }