| OLD | NEW |
| 1 /* Reset */ | 1 /* Reset */ |
| 2 body, h1, h2, h3, h4, li, ol, p, pre, section, ul { | 2 body, h1, h2, h3, h4, li, ol, p, pre, section, ul { |
| 3 margin: 0; | 3 margin: 0; |
| 4 padding: 0; | 4 padding: 0; |
| 5 } | 5 } |
| 6 | 6 |
| 7 body { | 7 body { |
| 8 font-family: Georgia, serif; | 8 font-family: Georgia, serif; |
| 9 background: #e8e8e8; | 9 background: #e8e8e8; |
| 10 color: #333; | 10 color: #333; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 font-weight: 700; | 45 font-weight: 700; |
| 46 } | 46 } |
| 47 | 47 |
| 48 pre, code { | 48 pre, code { |
| 49 font: 14px/22px Menlo, Monaco, Consolas, Courier, monospace; | 49 font: 14px/22px Menlo, Monaco, Consolas, Courier, monospace; |
| 50 color: hsl(220, 20%, 30%); | 50 color: hsl(220, 20%, 30%); |
| 51 background: hsl(220, 20%, 95%); | 51 background: hsl(220, 20%, 95%); |
| 52 margin: 22px 0; | 52 margin: 22px 0; |
| 53 padding: 0 4px; | 53 padding: 0 4px; |
| 54 border-radius: 4px; | 54 border-radius: 4px; |
| 55 overflow: hidden; | 55 overflow-x:auto; |
| 56 overflow-y:hidden; |
| 56 } | 57 } |
| 57 | 58 |
| 58 a { | 59 a { |
| 59 color: #15c; | 60 color: #15c; |
| 60 text-decoration: none; | 61 text-decoration: none; |
| 61 } | 62 } |
| 62 | 63 |
| 63 a:hover { | 64 a:hover { |
| 64 text-decoration: underline; | 65 text-decoration: underline; |
| 65 } | 66 } |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 } | 375 } |
| 375 | 376 |
| 376 p { | 377 p { |
| 377 border-left: solid 4px purple; | 378 border-left: solid 4px purple; |
| 378 } | 379 } |
| 379 | 380 |
| 380 section { | 381 section { |
| 381 border-left: solid 4px gray; | 382 border-left: solid 4px gray; |
| 382 } | 383 } |
| 383 */ | 384 */ |
| OLD | NEW |