admin_page.css
3 years ago
gglcptch.css
3 years ago
hide_badge.css
3 years ago
login-style.css
3 years ago
style.css
3 years ago
admin_page.css
47 lines
| 1 | /* |
| 2 | * menu sidebar |
| 3 | */ |
| 4 | #toplevel_page_google-captcha .wp-menu-image:before { |
| 5 | content: "\e912"; |
| 6 | font-family: 'bwsicons' !important; |
| 7 | } |
| 8 | |
| 9 | .cptch_loading { |
| 10 | position: relative; |
| 11 | } |
| 12 | |
| 13 | .cptch_loading::after { |
| 14 | content: ""; |
| 15 | position: absolute; |
| 16 | top: 15%; |
| 17 | right: -30%; |
| 18 | width: 12px; |
| 19 | height: 12px; |
| 20 | border: 3px solid #00aadc; |
| 21 | background-color: transparent; |
| 22 | border-bottom-color: transparent; |
| 23 | border-radius: 50%; |
| 24 | |
| 25 | -webkit-animation: cptch_animate 9.0s linear infinite; |
| 26 | animation: cptch_animate 9.0s linear infinite; |
| 27 | } |
| 28 | |
| 29 | @-webkit-keyframes cptch_animate { |
| 30 | 0% { |
| 31 | transform: rotate(0deg) |
| 32 | } |
| 33 | 100% { |
| 34 | transform: rotate(3000deg) |
| 35 | } |
| 36 | } |
| 37 | @keyframes cptch_animate { |
| 38 | 0% { |
| 39 | transform: rotate(0deg) |
| 40 | } |
| 41 | 100% { |
| 42 | transform: rotate(3000deg) |
| 43 | } |
| 44 | } |
| 45 | .bws_info.warning { |
| 46 | color: red; |
| 47 | } |