PluginProbe ʕ •ᴥ•ʔ
Firebase Authentication / 1.1.2
Firebase Authentication v1.1.2
1.7.0 trunk 1.0.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.8 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9
firebase-authentication / admin / css / style.css
firebase-authentication / admin / css Last commit date
bootstrap.min.css 6 years ago phone.css 6 years ago style.css 6 years ago
style.css
337 lines
1 .mo_firebase_auth_card{
2 margin: 10px;
3 border: 1px solid #ccc;
4 border-radius: 5px;
5 width: 100%;
6 transition: 0.2s all ease-in-out;
7 padding:20px;
8 }
9
10 .mo_firebase_auth_card:hover{
11 -webkit-box-shadow: 3px 3px 4px #ccc; /*Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
12 -moz-box-shadow: 3px 3px 4px #ccc; /* Firefox 3.5 - 3.6 */
13 box-shadow: 3px 3px 4px #ccc; /*Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS */
14 transition: 0.2s all ease-in-out;
15 }
16
17 .mo_firebase_auth_card h4{
18 font-size: 20px;
19 }
20
21 .mo_firebase_auth_label_heading{
22 font-size: 16px;
23 color: grey;
24 }
25
26 .mo_firebase_auth_contact_us_p{
27 font-size: 12px;
28 color: grey;
29 }
30
31 .mo_firebase_auth_switch {
32 position: relative;
33 display: inline-block;
34 width: 60px;
35 height: 34px;
36 }
37
38 .mo_firebase_auth_switch input {
39 opacity: 0;
40 width: 0;
41 height: 0;
42 }
43
44 .mo_firebase_auth_slider {
45 position: absolute;
46 cursor: pointer;
47 top: 0;
48 left: 0;
49 right: 0;
50 bottom: 0;
51 background-color: #ccc;
52 -webkit-transition: .4s;
53 transition: .4s;
54 }
55
56 .mo_firebase_auth_slider:before {
57 position: absolute;
58 content: "";
59 height: 26px;
60 width: 26px;
61 left: 4px;
62 bottom: 4px;
63 background-color: white;
64 -webkit-transition: .4s;
65 transition: .4s;
66 }
67
68 input:checked + .mo_firebase_auth_slider {
69 background-color: #2196F3;
70 }
71
72 input:focus + .mo_firebase_auth_slider {
73 box-shadow: 0 0 1px #2196F3;
74 }
75
76 input:checked + .mo_firebase_auth_slider:before {
77 -webkit-transform: translateX(26px);
78 -ms-transform: translateX(26px);
79 transform: translateX(26px);
80 }
81
82 /* Rounded mo_firebase_auth_sliders */
83 .mo_firebase_auth_slider.round {
84 border-radius: 34px;
85 }
86
87 .mo_firebase_auth_slider.round:before {
88 border-radius: 50%;
89 }
90
91 .mo-firebase-auth-tooltip {
92 position: relative;
93 /* border-radius: 100%; */
94 display: inline-block;
95 color: #212121;
96 padding: 0 5px;
97 font-size: 15px;
98 /* background-color: #212121bf; */
99 }
100
101 .mo-firebase-auth-tooltip .mo-firebase-auth-tooltip-text {
102 visibility: hidden;
103 background-color: #555;
104 color: #fff;
105 text-align: center;
106 border-radius: 6px;
107 padding: 5px 10px;
108 position: absolute;
109 z-index: 1;
110 opacity: 0;
111 transition: opacity 0.3s;
112 width: max-content;
113 }
114
115 .mo-firebase-auth-tooltip .mo-firebase-auth-tooltip-text::after {
116 content: "";
117 position: absolute;
118 top: 50%;
119 right: 100%;
120 margin-top: -5px;
121 border-width: 5px;
122 border-style: solid;
123 border-color: transparent #555 transparent transparent;
124 }
125
126 .mo-firebase-auth-tooltip:hover .mo-firebase-auth-tooltip-text {
127 visibility: visible;
128 opacity: 1;
129 }
130
131 .mo-tt-right {
132 top: -5px;
133 left: 125%;
134 }
135
136 /*Included for the feedback form*/
137 .mo_modal {
138 display: none;
139 position: fixed;
140 z-index: 1;
141 padding-top: 100px;
142 left: 100px;
143 top: 0;
144 margin-left:220px;
145 width: 50%;
146 height: 100%;
147
148 }
149
150 .mo_modal-demo {
151 background-color: #fefefe;
152 margin: auto;
153 padding: 20px;
154 border: 1px solid #888;
155 width: auto;
156 }
157
158 .mo_modal-content {
159 background-color: #fefefe;
160 margin: auto;
161 padding: 20px;
162 border: 1px solid #888;
163 width: 55%;
164 }
165 .mo_close {
166 color: #aaaaaa;
167 float: right;
168 font-size: 28px;
169 font-weight: bold;
170 }
171
172 #mo_toast {
173 visibility: hidden;
174 min-width: 250px;
175 margin-left: -250px;
176 background-color: rgba(51, 51, 51, 0.65);
177 color: #fff;
178 text-align: center;
179 border-radius: 2px;
180 position: absolute;
181 z-index: 1;
182 /* left: 50%; */
183 padding: 16px;
184 }
185 #mo_toast.show {
186 visibility: visible;
187 -webkit-animation: mo_fadein 0.5s, mo_fadeout 0.5s 2.5s;
188 animation: mo_fadein 0.5s, mo_fadeout 0.5s 2.5s;
189 }
190
191
192 @-webkit-keyframes mo_fadein {
193 from {opacity: 0;}
194 to {opacity: 1;}
195 }
196
197 @keyframes mo_fadein {
198 from {opacity: 0;}
199 to {opacity: 1;}
200 }
201
202 @-webkit-keyframes mo_fadeout {
203 from {opacity: 1;}
204 to {opacity: 0;}
205 }
206
207 @keyframes mo_fadeout {
208 from {opacity: 1;}
209 to {opacity: 0;}
210 }
211
212
213 .mo_close {
214 color: #aaaaaa;
215 float: right;
216 font-size: 28px;
217 font-weight: bold;
218 }
219 .mo_tutorial_overlay {
220 position: fixed;
221 top: 0;
222 left: 0;
223 right: 0;
224 bottom: 0;
225 width: 100%;
226 height: 100%;
227 background: #000;
228 opacity: .5;
229 z-index: 0;
230
231 }
232
233 .fade {
234 opacity: 0;
235 -webkit-transition: opacity 0.15s linear;
236 -o-transition: opacity 0.15s linear;
237 transition: opacity 0.15s linear;
238 }
239 .fade.in {
240 opacity: 1;
241 }
242 .modal-header {
243 padding: 15px;
244 border-bottom: 1px solid #e5e5e5;
245 }
246 .modal-header .close {
247 margin-top: -2px;
248 }
249 .modal-title {
250 margin: 0;
251 line-height: 1.42857143;
252 font-size: large;
253 }
254 .modal-body {
255 position: relative;
256 padding: 15px;
257 }
258 .modal-dialog {
259 position: relative;
260 width: auto;
261 margin: 10px;
262 }
263 .modal.fade .modal-dialog {
264 -webkit-transform: translate(0, -25%);
265 -ms-transform: translate(0, -25%);
266 -o-transform: translate(0, -25%);
267 transform: translate(0, -25%);
268 -webkit-transition: -webkit-transform 0.3s ease-out;
269 -o-transition: -o-transform 0.3s ease-out;
270 transition: transform 0.3s ease-out;
271 }
272 .modal.in .modal-dialog {
273 -webkit-transform: translate(0, 0);
274 -ms-transform: translate(0, 0);
275 -o-transform: translate(0, 0);
276 transform: translate(0, 0);
277 }
278 .mo_modal-footer {
279 padding: 15px;
280 text-align: right;
281 border-top: 1px solid #e5e5e5;
282 }
283 .mo_modal-footer .btn + .btn {
284 margin-left: 5px;
285 margin-bottom: 0;
286 }
287 .mo_modal-footer .btn-group .btn + .btn {
288 margin-left: -1px;
289 }
290 .mo_modal-footer .btn-block + .btn-block {
291 margin-left: 0;
292 }
293 .mo_modal-footer::after {
294 content: "";
295 clear: both;
296 display: table;
297 }
298 .mo_close {
299 float: right;
300 font-size: 21px;
301 font-weight: bold;
302 line-height: 1;
303 color: #000000;
304 text-shadow: 0 1px 0 #212121;
305 opacity: 0.5;
306 filter: alpha(opacity=50);
307 }
308 .mo_close:hover,
309 .mo_close:focus {
310 color: #000000;
311 text-decoration: none;
312 cursor: pointer;
313 opacity: 0.8;
314 filter: alpha(opacity=80);
315 }
316 button.close {
317 padding: 0;
318 cursor: pointer;
319 background: transparent;
320 border: 0;
321 -webkit-appearance: none;
322 }
323
324 .mo-span-circle{
325 display: inline-block;
326 padding: 15px;
327 line-height: 100%;
328
329 -moz-border-radius: 50%;
330 border-radius: 50%;
331
332 background-color: black;
333 color: white;
334 text-align: center;
335 font-size: 2em;
336
337 }