| OLD | NEW |
| 1 /* Global styles */ | 1 /* Global styles */ |
| 2 * { | 2 * { |
| 3 margin: 0; | 3 margin: 0; |
| 4 padding: 0; | 4 padding: 0; |
| 5 font: 400 14px 'Montserrat', sans-serif; | 5 font: 400 14px 'Montserrat', sans-serif; |
| 6 color: #333; | 6 color: #333; |
| 7 box-sizing: border-box; | 7 box-sizing: border-box; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .content { | 10 .content { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 border-bottom-right-radius: 4px; | 110 border-bottom-right-radius: 4px; |
| 111 border-bottom-left-radius:4px; | 111 border-bottom-left-radius:4px; |
| 112 } | 112 } |
| 113 | 113 |
| 114 /* Flex row container */ | 114 /* Flex row container */ |
| 115 .flex-row { | 115 .flex-row { |
| 116 display: flex; | 116 display: flex; |
| 117 flex-direction: row; | 117 flex-direction: row; |
| 118 } | 118 } |
| 119 | 119 |
| 120 .flex-row-wrap { |
| 121 display: flex; |
| 122 flex-direction: row; |
| 123 flex-wrap: wrap; |
| 124 } |
| 125 |
| 120 .inline-flex-row { | 126 .inline-flex-row { |
| 121 display: inline-flex; | 127 display: inline-flex; |
| 122 flex-direction: row; | 128 flex-direction: row; |
| 123 } | 129 } |
| 124 | 130 |
| 125 /* Flex column container */ | 131 /* Flex column container */ |
| 126 .flex-column { | 132 .flex-column { |
| 127 display: flex; | 133 display: flex; |
| 128 flex-direction: column; | 134 flex-direction: column; |
| 129 } | 135 } |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 -webkit-transform: translate3d(10px, 0, 0); | 337 -webkit-transform: translate3d(10px, 0, 0); |
| 332 -ms-transform: translate3d(10px, 0, 0); | 338 -ms-transform: translate3d(10px, 0, 0); |
| 333 transform: translate3d(10px, 0, 0); | 339 transform: translate3d(10px, 0, 0); |
| 334 } | 340 } |
| 335 } | 341 } |
| 336 | 342 |
| 337 .shake { | 343 .shake { |
| 338 animation: shake 0.5s; | 344 animation: shake 0.5s; |
| 339 -webkit-animation: shake 0.5s; | 345 -webkit-animation: shake 0.5s; |
| 340 } | 346 } |
| OLD | NEW |