home.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. /* Profile section */
  27. div#content_cell_profile img{
  28. position: relative;
  29. max-width: 8em;
  30. max-height: 8em;
  31. border-radius: 1.2em;
  32. margin: 0.5em;
  33. border: 0.1em solid #000000;
  34. vertical-align: top;
  35. z-index: 2;
  36. }
  37. div#content_cell_profile span#tagline{
  38. display: inline-block;
  39. padding-top: 0.5em;
  40. margin-left: -1em;
  41. padding-left: 1em;
  42. padding-right: 0.5em;
  43. border-bottom: 0.1em solid #000000;
  44. border-bottom-right-radius: 0.3em;
  45. z-index: 1;
  46. }
  47. /* Projects section */
  48. div#projects_section img.project_list_image{
  49. float: left;
  50. background-color: #ffffff;
  51. border: 0.1em solid #003300;
  52. border-radius: 0.3em;
  53. margin: 0 0.5em 0.5em 0.5em;
  54. max-width: 5em;
  55. max-height: 3em;
  56. }
  57. /* Blog section */
  58. div#blog_section img.post_list_image{
  59. float: left;
  60. background-color: #ffffff;
  61. border: 0.1em solid #003300;
  62. border-radius: 0.3em;
  63. margin: 0 0.5em 0.5em 0.5em;
  64. max-width: 5em;
  65. max-height: 3em;
  66. }
  67. div#blog_section table.post_list_footer{
  68. font-size: 80%;
  69. width: 100%;
  70. }
  71. div#blog_section table.post_list_footer td.comment_counter{
  72. font-style: italic;
  73. text-align: right;
  74. }