home.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* Page logo in the top of the toolbar */
  2. div#logo{
  3. width: 100%;
  4. text-align: center;
  5. }
  6. div#logo img{
  7. max-height: 7em;
  8. }
  9. div#content{
  10. display: table;
  11. }
  12. div#content div#content_row{
  13. display: table-row;
  14. }
  15. div#content div#content_row div.content_cell{
  16. display: table-cell;
  17. vertical-align: top;
  18. margin:1em;
  19. }
  20. div#content div#content_row div#content_cell_profile{
  21. width: 30%;
  22. }
  23. div#content div#content_row div#content_cell_content{
  24. width: 70%;
  25. }
  26. /* Projects section */
  27. div#projects_section img.project_list_image{
  28. float: left;
  29. background-color: #ffffff;
  30. border: 0.1em solid #003300;
  31. border-radius: 0.3em;
  32. margin: 0 0.5em 0.5em 0.5em;
  33. max-width: 5em;
  34. max-height: 3em;
  35. }
  36. /* Blog section */
  37. div#blog_section img.post_list_image{
  38. float: left;
  39. background-color: #ffffff;
  40. border: 0.1em solid #003300;
  41. border-radius: 0.3em;
  42. margin: 0 0.5em 0.5em 0.5em;
  43. max-width: 5em;
  44. max-height: 3em;
  45. }
  46. div#blog_section table.post_list_footer{
  47. font-size: 80%;
  48. width: 100%;
  49. }
  50. div#blog_section table.post_list_footer td.comment_counter{
  51. font-style: italic;
  52. text-align: right;
  53. }