| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 border-top-left-radius:4px; | 104 border-top-left-radius:4px; |
| 105 } | 105 } |
| 106 | 106 |
| 107 .list-group-item:last-child { | 107 .list-group-item:last-child { |
| 108 margin-bottom: 0; | 108 margin-bottom: 0; |
| 109 /* rounded bottom corners */ | 109 /* rounded bottom corners */ |
| 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 .full { |
| 115 height: 100%; |
| 116 width: 100; |
| 117 } |
| 118 |
| 119 .flex-row { |
| 120 display: flex; |
| 121 flex-direction: row; |
| 122 } |
| 123 |
| 114 /* Flex row container */ | 124 /* Flex row container */ |
| 115 .flex-row { | 125 .flex-row { |
| 116 display: flex; | 126 display: flex; |
| 117 flex-direction: row; | 127 flex-direction: row; |
| 118 } | 128 } |
| 119 | 129 |
| 120 .flex-row-wrap { | 130 .flex-row-wrap { |
| 121 display: flex; | 131 display: flex; |
| 122 flex-direction: row; | 132 flex-direction: row; |
| 123 flex-wrap: wrap; | 133 flex-wrap: wrap; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 -webkit-transform: translate3d(10px, 0, 0); | 347 -webkit-transform: translate3d(10px, 0, 0); |
| 338 -ms-transform: translate3d(10px, 0, 0); | 348 -ms-transform: translate3d(10px, 0, 0); |
| 339 transform: translate3d(10px, 0, 0); | 349 transform: translate3d(10px, 0, 0); |
| 340 } | 350 } |
| 341 } | 351 } |
| 342 | 352 |
| 343 .shake { | 353 .shake { |
| 344 animation: shake 0.5s; | 354 animation: shake 0.5s; |
| 345 -webkit-animation: shake 0.5s; | 355 -webkit-animation: shake 0.5s; |
| 346 } | 356 } |
| OLD | NEW |