home.css 388 B

1234567891011121314151617181920212223242526272829
  1. body{
  2. text-align: center;
  3. }
  4. div#section_table{
  5. display: table;
  6. width: 100%;
  7. }
  8. div.section_row{
  9. display: table-row;
  10. }
  11. div.section_cell{
  12. display: table-cell;
  13. width: 50%;
  14. }
  15. div.section{
  16. display: block;
  17. vertical-align: top;
  18. text-align: left;
  19. margin: 2em;
  20. }
  21. div.section#authentication{
  22. display: inline-block;
  23. margin: 8em auto auto auto;
  24. }