Left: | ||
Right: |
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; |
juliandoucette
2018/01/22 19:47:54
NIT: Colors should be lower case
ire
2018/01/23 08:48:10
Done.
(We should add this to our stylelint)
| |
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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
98 #page-footer | 98 #page-footer |
99 { | 99 { |
100 margin-top: $small-space; | 100 margin-top: $small-space; |
101 text-align: center; | 101 text-align: center; |
102 | 102 |
103 @media (min-width: $phablet-breakpoint) | 103 @media (min-width: $phablet-breakpoint) |
104 { | 104 { |
105 text-align: left; | 105 text-align: left; |
106 } | 106 } |
107 } | 107 } |
LEFT | RIGHT |