| LEFT | RIGHT |
| 1 /******************************************************************************* | 1 /******************************************************************************* |
| 2 * Layout | 2 * Layout |
| 3 ******************************************************************************/ | 3 ******************************************************************************/ |
| 4 | 4 |
| 5 html | 5 html |
| 6 { | 6 { |
| 7 background-color: #F3F3F3; | 7 background-color: #f3f3f3; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body | 10 body |
| 11 { | 11 { |
| 12 @media (min-width: $phablet-breakpoint) | 12 @media (min-width: $phablet-breakpoint) |
| 13 { | 13 { |
| 14 display: table; | 14 display: table; |
| 15 width: 100%; | 15 width: 100%; |
| 16 min-height: 100vh; | 16 min-height: 100vh; |
| 17 } | 17 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 #page-header | 35 #page-header |
| 36 { | 36 { |
| 37 margin-top: $medium-space; | 37 margin-top: $medium-space; |
| 38 margin-bottom: $small-space; | 38 margin-bottom: $small-space; |
| 39 | 39 |
| 40 @media (min-width: $phablet-breakpoint) | 40 @media (min-width: $phablet-breakpoint) |
| 41 { | 41 { |
| 42 margin-top: 0; | 42 margin-top: 0; |
| 43 margin-bottom: $medium-space; | 43 margin-bottom: $medium-space; |
| 44 text-align: center; | |
| 45 } | 44 } |
| 46 } | 45 } |
| 47 | 46 |
| 48 #page-header figure | 47 #page-header figure |
| 49 { | 48 { |
| 50 display: inline-table; | 49 display: inline-table; |
| 51 font-size: 1.5em; | 50 font-size: 1.5em; |
| 52 font-weight: 300; | 51 font-weight: 300; |
| 53 | 52 |
| 54 @media (min-width: $phablet-breakpoint) | 53 @media (min-width: $phablet-breakpoint) |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 font-weight: 700; | 86 font-weight: 700; |
| 88 } | 87 } |
| 89 | 88 |
| 90 /* #sign-up, #page-footer | 89 /* #sign-up, #page-footer |
| 91 ******************************************************************************/ | 90 ******************************************************************************/ |
| 92 | 91 |
| 93 #sign-up, | 92 #sign-up, |
| 94 #page-footer | 93 #page-footer |
| 95 { | 94 { |
| 96 width: 100%; | 95 width: 100%; |
| 97 | |
| 98 @media (min-width: $phablet-breakpoint) | |
| 99 { | |
| 100 max-width: 320px; | |
| 101 margin-right: auto; | |
| 102 margin-left: auto; | |
| 103 } | |
| 104 } | 96 } |
| 105 | 97 |
| 106 #page-footer | 98 #page-footer |
| 107 { | 99 { |
| 108 margin-top: $small-space; | 100 margin-top: $small-space; |
| 109 text-align: center; | 101 text-align: center; |
| 110 | 102 |
| 111 @media (min-width: $phablet-breakpoint) | 103 @media (min-width: $phablet-breakpoint) |
| 112 { | 104 { |
| 113 text-align: left; | 105 text-align: left; |
| 114 } | 106 } |
| 115 } | 107 } |
| LEFT | RIGHT |