_interrogating.scss in Plugin Detective – Troubleshooting Conflicts 1.1.4, at troubleshoot/app/src/assets/_interrogating.scss
| 1 | @keyframes swinging{ |
| 2 | 0% {transform: rotate(6deg); } |
| 3 | 50% {transform: rotate(-6deg); } |
| 4 | 100% {transform: rotate(6deg); } |
| 5 | } |
| 6 | |
| 7 | .interrogating { |
| 8 | background: md-get-palette-color(bluegrey, 900); |
| 9 | box-sizing: border-box; |
| 10 | color: white; |
| 11 | min-height: 100vh; |
| 12 | padding: 30vh 2rem 2rem; |
| 13 | width: 100%; |
| 14 | .light { |
| 15 | animation: swinging 6s ease-in-out forwards infinite; |
| 16 | left: 0; |
| 17 | margin: auto; |
| 18 | max-height: 50vh; |
| 19 | position: absolute; |
| 20 | right: 0; |
| 21 | top: -2px; |
| 22 | transform-origin: 50% 0; |
| 23 | width: auto; |
| 24 | z-index: 0; |
| 25 | } |
| 26 | .loading { |
| 27 | min-height: auto; |
| 28 | position: static; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | .continue { |
| 33 | margin: 1rem 0; |
| 34 | text-align: center; |
| 35 | } |
| 36 | |
| 37 | .more-suspects { |
| 38 | display: flex; |
| 39 | justify-content: center; |
| 40 | flex-wrap: wrap; |
| 41 | @include bp(xs) { |
| 42 | flex-wrap: nowrap; |
| 43 | } |
| 44 | .md-card { |
| 45 | max-width: 320px; |
| 46 | width: 100%; |
| 47 | @include bp(xs) { |
| 48 | width: 50%; |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 |