PluginProbe
Plugin Detective – Troubleshooting Conflicts / 1.1.4
Plugin Detective – Troubleshooting Conflicts v1.1.4
1.2.35 1.2.33 1.2.32 1.2.31 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2 1.2.1 1.2.10 1.2.12 1.2.13 1.2.14 1.2.16 1.2.19 1.2.20 1.2.22 1.2.23 1.2.24 All 54 releases
plugin-detective / troubleshoot / app / src / assets / _interrogating.scss

_interrogating.scss in Plugin Detective – Troubleshooting Conflicts 1.1.4, at troubleshoot/app/src/assets/_interrogating.scss

52 lines 883 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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