| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 * | 1 * |
| 2 { | 2 { |
| 3 font-family: Arial, sans; | 3 font-family: Arial, sans; |
| 4 font-size: 16px; | 4 font-size: 16px; |
| 5 } | 5 } |
| 6 | 6 |
| 7 body | 7 body |
| 8 { | 8 { |
| 9 margin: 0; | 9 margin: 0; |
| 10 line-height: 1.5; | 10 line-height: 1.5; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 151 .content h2, | 151 .content h2, |
| 152 .content h3, | 152 .content h3, |
| 153 .content h4, | 153 .content h4, |
| 154 .content h5 | 154 .content h5 |
| 155 { | 155 { |
| 156 font-weight: bold; | 156 font-weight: bold; |
| 157 margin: 32px 0px; | 157 margin: 32px 0px; |
| 158 margin: 2rem 0rem; | 158 margin: 2rem 0rem; |
| 159 } | 159 } |
| 160 | 160 |
| 161 .content h1 { font-size: 2.4em; } | 161 .content h1 { font-size: 1.8em; } |
| 162 .content h2 { font-size: 1.6em; } | 162 .content h2 { font-size: 1.4em; } |
| 163 .content h3 { font-size: 1.3em; } | 163 .content h3 { font-size: 1.3em; } |
| 164 .content h4 { font-size: 1.2em; } | 164 .content h4 { font-size: 1.2em; } |
| 165 .content h5 { font-size: 1.1em; } | 165 .content h5 { font-size: 1.1em; } |
| 166 | 166 |
| 167 @media(min-width: 1200px) | |
|
ire
2017/10/20 07:36:00
NIT: I think this is too wide? I think the larger
juliandoucette
2017/10/20 13:52:15
Agreed. We can use a variable for this purpose.
juliandoucette
2017/10/20 14:03:16
I was thinking about website-defaults :D
| |
| 168 { | |
| 169 .content h1 { font-size: 2.4em; } | |
| 170 .content h2 { font-size: 1.6em; } | |
| 171 } | |
| 172 | |
| 167 /******************************************************************************* | 173 /******************************************************************************* |
| 168 * #navbar | 174 * #navbar |
| 169 ******************************************************************************/ | 175 ******************************************************************************/ |
| 170 | 176 |
| 171 #navbar | 177 #navbar |
| 172 { | 178 { |
| 173 height: 4em; | 179 height: 4em; |
| 174 background-color: #c70d2c; | 180 background-color: #c70d2c; |
| 175 } | 181 } |
| 176 | 182 |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 596 { | 602 { |
| 597 display: none; | 603 display: none; |
| 598 } | 604 } |
| 599 | 605 |
| 600 /* overriding display:none above */ | 606 /* overriding display:none above */ |
| 601 #footer #social-list | 607 #footer #social-list |
| 602 { | 608 { |
| 603 display: block; | 609 display: block; |
| 604 } | 610 } |
| 605 } | 611 } |
| OLD | NEW |