home.css 485 B

123456789101112131415161718192021222324252627282930
  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. }