| 1234567891011121314151617181920212223242526272829 |
- body{
- text-align: center;
- }
- div#section_table{
- display: table;
- width: 100%;
- }
- div.section_row{
- display: table-row;
- }
- div.section_cell{
- display: table-cell;
- width: 50%;
- }
- div.section{
- display: block;
- vertical-align: top;
- text-align: left;
- margin: 2em;
- }
- div.section#authentication{
- display: inline-block;
- margin: 8em auto auto auto;
- }
|