style.css
530 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_attr_table { |
| 22 | width: 100%; |
| 23 | } |
| 24 | .mo_firebase_attr_table tr td:first-child { |
| 25 | width: 30%; |
| 26 | } |
| 27 | |
| 28 | .mo_firebase_auth_label_heading{ |
| 29 | font-size: 16px; |
| 30 | color: grey; |
| 31 | } |
| 32 | |
| 33 | .mo_firebase_auth_contact_us_p{ |
| 34 | font-size: 12px; |
| 35 | color: grey; |
| 36 | } |
| 37 | |
| 38 | .mo_firebase_auth_switch { |
| 39 | position: relative; |
| 40 | display: inline-block; |
| 41 | width: 60px; |
| 42 | height: 34px; |
| 43 | } |
| 44 | |
| 45 | .mo_firebase_auth_switch input { |
| 46 | opacity: 0; |
| 47 | width: 0; |
| 48 | height: 0; |
| 49 | } |
| 50 | |
| 51 | .mo_firebase_auth_slider { |
| 52 | position: absolute; |
| 53 | cursor: pointer; |
| 54 | top: 0; |
| 55 | left: 0; |
| 56 | right: 0; |
| 57 | bottom: 0; |
| 58 | background-color: #ccc; |
| 59 | -webkit-transition: .4s; |
| 60 | transition: .4s; |
| 61 | } |
| 62 | |
| 63 | .mo_firebase_auth_slider:before { |
| 64 | position: absolute; |
| 65 | content: ""; |
| 66 | height: 26px; |
| 67 | width: 26px; |
| 68 | left: 4px; |
| 69 | bottom: 4px; |
| 70 | background-color: white; |
| 71 | -webkit-transition: .4s; |
| 72 | transition: .4s; |
| 73 | } |
| 74 | |
| 75 | input:checked + .mo_firebase_auth_slider { |
| 76 | background-color: #2196F3; |
| 77 | } |
| 78 | |
| 79 | input:focus + .mo_firebase_auth_slider { |
| 80 | box-shadow: 0 0 1px #2196F3; |
| 81 | } |
| 82 | |
| 83 | input:checked + .mo_firebase_auth_slider:before { |
| 84 | -webkit-transform: translateX(26px); |
| 85 | -ms-transform: translateX(26px); |
| 86 | transform: translateX(26px); |
| 87 | } |
| 88 | |
| 89 | /* Rounded mo_firebase_auth_sliders */ |
| 90 | .mo_firebase_auth_slider.round { |
| 91 | border-radius: 34px; |
| 92 | } |
| 93 | |
| 94 | .mo_firebase_auth_slider.round:before { |
| 95 | border-radius: 50%; |
| 96 | } |
| 97 | |
| 98 | .mo-firebase-auth-tooltip { |
| 99 | position: relative; |
| 100 | /* border-radius: 100%; */ |
| 101 | display: inline-block; |
| 102 | color: #212121; |
| 103 | padding: 0 5px; |
| 104 | font-size: 15px; |
| 105 | /* background-color: #212121bf; */ |
| 106 | } |
| 107 | |
| 108 | .mo-firebase-auth-tooltip .mo-firebase-auth-tooltip-text { |
| 109 | visibility: hidden; |
| 110 | background-color: #555; |
| 111 | color: #fff; |
| 112 | text-align: center; |
| 113 | border-radius: 6px; |
| 114 | padding: 5px 10px; |
| 115 | position: absolute; |
| 116 | z-index: 1; |
| 117 | opacity: 0; |
| 118 | transition: opacity 0.3s; |
| 119 | width: max-content; |
| 120 | } |
| 121 | |
| 122 | .mo-firebase-auth-tooltip .mo-firebase-auth-tooltip-text::after { |
| 123 | content: ""; |
| 124 | position: absolute; |
| 125 | top: 50%; |
| 126 | right: 100%; |
| 127 | margin-top: -5px; |
| 128 | border-width: 5px; |
| 129 | border-style: solid; |
| 130 | border-color: transparent #555 transparent transparent; |
| 131 | } |
| 132 | |
| 133 | .mo-firebase-auth-tooltip:hover .mo-firebase-auth-tooltip-text { |
| 134 | visibility: visible; |
| 135 | opacity: 1; |
| 136 | } |
| 137 | |
| 138 | .mo-tt-right { |
| 139 | top: -5px; |
| 140 | left: 125%; |
| 141 | } |
| 142 | |
| 143 | /*Included for the feedback form*/ |
| 144 | .mo_modal { |
| 145 | display: none; |
| 146 | position: fixed; |
| 147 | z-index: 1; |
| 148 | padding-top: 100px; |
| 149 | left: 100px; |
| 150 | top: 0; |
| 151 | margin-left:220px; |
| 152 | width: 50%; |
| 153 | height: 100%; |
| 154 | |
| 155 | } |
| 156 | |
| 157 | .mo_modal-demo { |
| 158 | background-color: #fefefe; |
| 159 | margin: auto; |
| 160 | padding: 20px; |
| 161 | border: 1px solid #888; |
| 162 | width: auto; |
| 163 | } |
| 164 | |
| 165 | .mo_modal-content { |
| 166 | background-color: #fefefe; |
| 167 | margin: auto; |
| 168 | padding: 20px; |
| 169 | border: 1px solid #888; |
| 170 | width: 55%; |
| 171 | } |
| 172 | .mo_close { |
| 173 | color: #aaaaaa; |
| 174 | float: right; |
| 175 | font-size: 28px; |
| 176 | font-weight: bold; |
| 177 | } |
| 178 | |
| 179 | #mo_toast { |
| 180 | visibility: hidden; |
| 181 | min-width: 250px; |
| 182 | margin-left: -250px; |
| 183 | background-color: rgba(51, 51, 51, 0.65); |
| 184 | color: #fff; |
| 185 | text-align: center; |
| 186 | border-radius: 2px; |
| 187 | position: absolute; |
| 188 | z-index: 1; |
| 189 | /* left: 50%; */ |
| 190 | padding: 16px; |
| 191 | } |
| 192 | #mo_toast.show { |
| 193 | visibility: visible; |
| 194 | -webkit-animation: mo_fadein 0.5s, mo_fadeout 0.5s 2.5s; |
| 195 | animation: mo_fadein 0.5s, mo_fadeout 0.5s 2.5s; |
| 196 | } |
| 197 | |
| 198 | |
| 199 | @-webkit-keyframes mo_fadein { |
| 200 | from {opacity: 0;} |
| 201 | to {opacity: 1;} |
| 202 | } |
| 203 | |
| 204 | @keyframes mo_fadein { |
| 205 | from {opacity: 0;} |
| 206 | to {opacity: 1;} |
| 207 | } |
| 208 | |
| 209 | @-webkit-keyframes mo_fadeout { |
| 210 | from {opacity: 1;} |
| 211 | to {opacity: 0;} |
| 212 | } |
| 213 | |
| 214 | @keyframes mo_fadeout { |
| 215 | from {opacity: 1;} |
| 216 | to {opacity: 0;} |
| 217 | } |
| 218 | |
| 219 | |
| 220 | .mo_close { |
| 221 | color: #aaaaaa; |
| 222 | float: right; |
| 223 | font-size: 28px; |
| 224 | font-weight: bold; |
| 225 | } |
| 226 | .mo_tutorial_overlay { |
| 227 | position: fixed; |
| 228 | top: 0; |
| 229 | left: 0; |
| 230 | right: 0; |
| 231 | bottom: 0; |
| 232 | width: 100%; |
| 233 | height: 100%; |
| 234 | background: #000; |
| 235 | opacity: .5; |
| 236 | z-index: 0; |
| 237 | |
| 238 | } |
| 239 | |
| 240 | .fade { |
| 241 | opacity: 0; |
| 242 | -webkit-transition: opacity 0.15s linear; |
| 243 | -o-transition: opacity 0.15s linear; |
| 244 | transition: opacity 0.15s linear; |
| 245 | } |
| 246 | .fade.in { |
| 247 | opacity: 1; |
| 248 | } |
| 249 | .modal-header { |
| 250 | padding: 15px; |
| 251 | border-bottom: 1px solid #e5e5e5; |
| 252 | } |
| 253 | .modal-header .close { |
| 254 | margin-top: -2px; |
| 255 | } |
| 256 | .modal-title { |
| 257 | margin: 0; |
| 258 | line-height: 1.42857143; |
| 259 | font-size: large; |
| 260 | } |
| 261 | .modal-body { |
| 262 | position: relative; |
| 263 | padding: 15px; |
| 264 | } |
| 265 | .modal-dialog { |
| 266 | position: relative; |
| 267 | width: auto; |
| 268 | margin: 10px; |
| 269 | } |
| 270 | .modal.fade .modal-dialog { |
| 271 | -webkit-transform: translate(0, -25%); |
| 272 | -ms-transform: translate(0, -25%); |
| 273 | -o-transform: translate(0, -25%); |
| 274 | transform: translate(0, -25%); |
| 275 | -webkit-transition: -webkit-transform 0.3s ease-out; |
| 276 | -o-transition: -o-transform 0.3s ease-out; |
| 277 | transition: transform 0.3s ease-out; |
| 278 | } |
| 279 | .modal.in .modal-dialog { |
| 280 | -webkit-transform: translate(0, 0); |
| 281 | -ms-transform: translate(0, 0); |
| 282 | -o-transform: translate(0, 0); |
| 283 | transform: translate(0, 0); |
| 284 | } |
| 285 | .mo_modal-footer { |
| 286 | padding: 15px; |
| 287 | text-align: right; |
| 288 | border-top: 1px solid #e5e5e5; |
| 289 | } |
| 290 | .mo_modal-footer .btn + .btn { |
| 291 | margin-left: 5px; |
| 292 | margin-bottom: 0; |
| 293 | } |
| 294 | .mo_modal-footer .btn-group .btn + .btn { |
| 295 | margin-left: -1px; |
| 296 | } |
| 297 | .mo_modal-footer .btn-block + .btn-block { |
| 298 | margin-left: 0; |
| 299 | } |
| 300 | .mo_modal-footer::after { |
| 301 | content: ""; |
| 302 | clear: both; |
| 303 | display: table; |
| 304 | } |
| 305 | .mo_close { |
| 306 | float: right; |
| 307 | font-size: 21px; |
| 308 | font-weight: bold; |
| 309 | line-height: 1; |
| 310 | color: #000000; |
| 311 | text-shadow: 0 1px 0 #212121; |
| 312 | opacity: 0.5; |
| 313 | filter: alpha(opacity=50); |
| 314 | } |
| 315 | .mo_close:hover, |
| 316 | .mo_close:focus { |
| 317 | color: #000000; |
| 318 | text-decoration: none; |
| 319 | cursor: pointer; |
| 320 | opacity: 0.8; |
| 321 | filter: alpha(opacity=80); |
| 322 | } |
| 323 | button.close { |
| 324 | padding: 0; |
| 325 | cursor: pointer; |
| 326 | background: transparent; |
| 327 | border: 0; |
| 328 | -webkit-appearance: none; |
| 329 | } |
| 330 | |
| 331 | .mo-span-circle{ |
| 332 | display: inline-block; |
| 333 | padding: 15px; |
| 334 | line-height: 100%; |
| 335 | |
| 336 | -moz-border-radius: 50%; |
| 337 | border-radius: 50%; |
| 338 | |
| 339 | background-color: black; |
| 340 | color: white; |
| 341 | text-align: center; |
| 342 | font-size: 2em; |
| 343 | |
| 344 | } |
| 345 | |
| 346 | .mo_firebase_authentication_nav{ |
| 347 | margin: 10px; |
| 348 | background-color: #cccccc21; |
| 349 | width: 100%; |
| 350 | border-radius: 2px; |
| 351 | } |
| 352 | |
| 353 | .mo_firebase_authentication_nav a { |
| 354 | color: black; |
| 355 | } |
| 356 | |
| 357 | .mo_firebase_authentication_nav_item{ |
| 358 | display: inline-block; |
| 359 | margin-bottom: 0px; |
| 360 | width: 150px; |
| 361 | font-size: 14px; |
| 362 | padding: 10px; |
| 363 | margin-right: 10px; |
| 364 | text-align: center; |
| 365 | cursor: pointer; |
| 366 | } |
| 367 | |
| 368 | .mo_firebase_authentication_nav_item.active{ |
| 369 | background-color: #0379fb0d; |
| 370 | border-bottom: 2px solid #007bff; |
| 371 | color: #007bff; |
| 372 | font-weight: bold; |
| 373 | } |
| 374 | |
| 375 | |
| 376 | code { |
| 377 | /*background-color: rgba(238,62,140,0.1);*/ |
| 378 | background-color: #FFFFFF; |
| 379 | border-radius: 3px; |
| 380 | color: #e83e8c; |
| 381 | font-size: 85%; |
| 382 | margin: 0; |
| 383 | padding: .2em .4em; |
| 384 | /*box-shadow: inset 0px 1px 4px rgba(238,62,140,0.2);*/ |
| 385 | font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; |
| 386 | word-break: break-word; |
| 387 | } |
| 388 | |
| 389 | #mo_firebase_authentication_hooks_table{ |
| 390 | /*font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";*/ |
| 391 | font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; |
| 392 | background: #f5f5f5; |
| 393 | padding :20px; |
| 394 | } |
| 395 | |
| 396 | #mo_firebase_authentication_hook_item{ |
| 397 | padding: 10px 10px 5px; |
| 398 | background: #FFFFFF; |
| 399 | box-shadow: inset 0px 1px 4px #d6d6d6; |
| 400 | } |
| 401 | |
| 402 | #mo_firebase_authentication_hook_item_desc{ |
| 403 | margin-top: 10px; |
| 404 | } |
| 405 | |
| 406 | .moc-licensing-plan-header { |
| 407 | font-size: 32px; |
| 408 | font-variant: small-caps; |
| 409 | border-radius: 1rem 1rem 0px 0px; |
| 410 | } |
| 411 | .moc-licensing-plan-header hr { |
| 412 | margin: 1.5rem 0; |
| 413 | } |
| 414 | .moc-licensing-plan-feature-list { |
| 415 | font-size: 12px; |
| 416 | padding-top: 10px; |
| 417 | } |
| 418 | .moc-licensing-plan-feature-list li { |
| 419 | text-align: left; |
| 420 | padding: 10px; |
| 421 | border: none; |
| 422 | } |
| 423 | .moc-licensing-plan-feature-list li:nth-child(even) { |
| 424 | background-color: #f0f0f0; |
| 425 | } |
| 426 | .moc-licensing-plan-usp { |
| 427 | font-size: 18px; |
| 428 | font-weight: 500; |
| 429 | padding-bottom: 10px; |
| 430 | } |
| 431 | .moc-licensing-plan-price { |
| 432 | font-size: 24px; |
| 433 | font-weight: 400; |
| 434 | } |
| 435 | .moc-licensing-plan-name { |
| 436 | font-size: 16px; |
| 437 | font-weight: 500; |
| 438 | } |
| 439 | .moc-licensing-plan { |
| 440 | border-radius: 1rem; |
| 441 | border: 1px solid #00788E; |
| 442 | margin: 0.5rem 0; |
| 443 | box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4); |
| 444 | transition: 0.3s; |
| 445 | } |
| 446 | .moc-licensing-plan:hover { |
| 447 | margin-top: -.25rem; |
| 448 | margin-bottom: .25rem; |
| 449 | /* border: 1px solid #17a2b8; */ |
| 450 | border: 1px solid rgb(112, 165, 245); |
| 451 | box-shadow: 0 16px 32px 0 rgba(112, 165, 245, 0.8); |
| 452 | } |
| 453 | |
| 454 | .moct-align-center { |
| 455 | text-align: center; |
| 456 | } |
| 457 | .moc-lp-highlight { |
| 458 | box-shadow: 0 16px 32px 0 #563d7c66; |
| 459 | border: 1px solid #2B1251; |
| 460 | } |
| 461 | .moc-lp-highlight:hover { |
| 462 | border: 1px solid #563d7c; |
| 463 | box-shadow: 0 16px 32px 0 #563d7ccc; |
| 464 | } |
| 465 | |
| 466 | .moc-lp-buy-btn { |
| 467 | border-radius: 5rem; |
| 468 | letter-spacing: .1rem; |
| 469 | font-weight: bold; |
| 470 | padding: 1rem; |
| 471 | opacity: 0.7; |
| 472 | } |
| 473 | .moc-lp-buy-btn:hover { |
| 474 | opacity: 1; |
| 475 | } |
| 476 | .btn-purple { |
| 477 | color: #ffffff; |
| 478 | background: radial-gradient(circle, #563d7c, #452c6b); |
| 479 | border-color: #563d7c; |
| 480 | } |
| 481 | .btn-purple:hover { |
| 482 | background: radial-gradient(circle, #452c6b, #563d7c); |
| 483 | } |
| 484 | |
| 485 | .mo_firebase_authentication_tutorial_overlay { |
| 486 | position: fixed; |
| 487 | top: 0; |
| 488 | left: 0; |
| 489 | right: 0; |
| 490 | bottom: 0; |
| 491 | width: 100%; |
| 492 | height: 100%; |
| 493 | background: #000; |
| 494 | opacity: .5; |
| 495 | z-index: 0; |
| 496 | } |
| 497 | |
| 498 | .mo_firebase_authentication_settings_table { |
| 499 | width: 100%; |
| 500 | } |
| 501 | .mo_firebase_authentication_settings_table tr td:first-child { |
| 502 | width: 30%; |
| 503 | } |
| 504 | .mo_table_textbox { |
| 505 | width:80%; |
| 506 | } |
| 507 | .mo_settings_table { |
| 508 | width: 100%; |
| 509 | } |
| 510 | .mo_settings_table tr td:first-child { |
| 511 | width: 30%; |
| 512 | } |
| 513 | |
| 514 | .mo_table_layout { |
| 515 | font-family: Verdana,Arial,Helvetica,sans-serif; |
| 516 | font-weight: 150; |
| 517 | font-size: 14px; |
| 518 | background-color:#FFFFFF; |
| 519 | /*padding:0px 10px 10px 10px;*/ |
| 520 | margin-bottom: 10px; |
| 521 | } |
| 522 | .mo_table_layout td { |
| 523 | |
| 524 | } |
| 525 | .mo_table_layout input['type=text'] { |
| 526 | width: 80%; |
| 527 | } |
| 528 | .mo_table_layout td strong { |
| 529 | margin-left: 10px; |
| 530 | } |