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 / _complete.scss

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

130 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .finished {
2 padding: 1rem 1rem 10rem;
3 &.culprits-found {
4 text-align: center;
5 .culprit-image {
6 text-align: left;
7 }
8 }
9 }
10
11 .md-empty-state {
12 ul {
13 text-align: left;
14 }
15 }
16
17 .results {
18 display: flex;
19 flex-direction: column;
20 @include bp(s) {
21 flex-direction: row;
22 justify-content: center;
23 }
24 .result {
25 width: 100%;
26 @include bp(s) {
27 width: 50%;
28 }
29 @include bp(m) {
30 width: 33%;
31 }
32 }
33 }
34
35 .culprit-image {
36 background: radial-gradient(ellipse at center, rgba(232,234,246,1) 0%,rgba(255,255,255,0) 100%);
37 position: relative;
38 width: 100%;
39 .bg {
40 width: 100%;
41 }
42 .plugin {
43 background: white;
44 border: 2px solid black;
45 border-radius: 5%;
46 bottom: 52%;
47 left: 0;
48 margin: auto;
49 position: absolute;
50 right: 0;
51 text-align: center;
52 width: 40%;
53 .avatar-wrap {
54 width: 100%;
55 &:after {
56 background: md-get-palette-color(lightgreen, 500);
57 border-radius: 50%;
58 content: '';
59 display: block;
60 height: 0;
61 padding-bottom: 100%;
62 width: 100%;
63 }
64 }
65 .avatar {
66 float: left;
67 font-size: 4rem;
68 line-height: 4rem;
69 margin-top: -2rem;
70 padding-top: 50%;
71 text-align: center;
72 width: 100%;
73 }
74 }
75 .sign-text {
76 bottom: 2.5%;
77 color: white;
78 display: flex;
79 flex-direction: column;
80 font-size: 1em;
81 left: 0;
82 height: 25%;
83 margin: auto;
84 position: absolute;
85 right: 0;
86 text-shadow: 1px 1px 1px black;
87 text-transform: uppercase;
88 width: 58%;
89 .text {
90 display: block;
91 line-height: 1.1;
92 overflow: hidden;
93 text-overflow: ellipsis;
94 white-space: nowrap;
95 width: 100%;
96 }
97 .multiline-text {
98 line-height: 1.1;
99 max-height: 2.2em;
100 overflow: hidden;
101 }
102 .r {
103 text-align: right;
104 }
105 .top,
106 .bottom {
107 display: flex;
108 font-size: 0.9em;
109 .l, .r {
110 flex: 1;
111 }
112 }
113 .middle {
114 display: flex;
115 flex: 1;
116 flex-direction: column;
117 font-size: 2em;
118 justify-content: center;
119 text-align: center;
120 &.medium-text {
121 font-size: 1.6em;
122 }
123 &.small-text {
124 font-size: 1.2em;
125 }
126 }
127 }
128 }
129
130