style.css
134 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 | } |