| OLD | NEW |
| 1 | 1 |
| 2 /* Global styles */ | 2 /* Global styles */ |
| 3 * { | 3 * { |
| 4 margin: 0; | 4 margin: 0; |
| 5 padding: 0; | 5 padding: 0; |
| 6 font: 400 14px 'Montserrat', sans-serif; | 6 font: 400 14px 'Montserrat', sans-serif; |
| 7 color: #333; | 7 color: #333; |
| 8 box-sizing: border-box; | 8 box-sizing: border-box; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 display: table-row; | 37 display: table-row; |
| 38 } | 38 } |
| 39 | 39 |
| 40 .memberName, .memberValue { | 40 .memberName, .memberValue { |
| 41 display: table-cell; | 41 display: table-cell; |
| 42 vertical-align: top; | 42 vertical-align: top; |
| 43 padding: 3px 0 3px 1em; | 43 padding: 3px 0 3px 1em; |
| 44 font: 400 14px 'Montserrat', sans-serif; | 44 font: 400 14px 'Montserrat', sans-serif; |
| 45 } | 45 } |
| 46 | 46 |
| 47 .memberSmall { |
| 48 display: table-cell; |
| 49 vertical-align: top; |
| 50 padding: 3px 0 3px 1em; |
| 51 font: 400 12px 'Montserrat', sans-serif; |
| 52 } |
| 53 |
| 47 .monospace { | 54 .monospace { |
| 48 font-family: consolas, courier, monospace; | 55 font-family: consolas, courier, monospace; |
| 49 font-size: 1em; | 56 font-size: 1em; |
| 50 line-height: 1.2em; | 57 line-height: 1.2em; |
| 51 white-space: nowrap; | 58 white-space: nowrap; |
| 52 } | 59 } |
| 53 | 60 |
| 54 a { | 61 a { |
| 55 color: #0489c3; | 62 color: #0489c3; |
| 56 text-decoration: none; | 63 text-decoration: none; |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 margin-bottom: 20px; | 245 margin-bottom: 20px; |
| 239 background-color: #f5f5f5; | 246 background-color: #f5f5f5; |
| 240 border: 1px solid #e3e3e3; | 247 border: 1px solid #e3e3e3; |
| 241 border-radius: 4px; | 248 border-radius: 4px; |
| 242 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05); | 249 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05); |
| 243 } | 250 } |
| 244 | 251 |
| 245 .break-wrap { | 252 .break-wrap { |
| 246 word-wrap: break-word; | 253 word-wrap: break-word; |
| 247 } | 254 } |
| OLD | NEW |