Created
May 30, 2020 16:25
-
-
Save LeuAlmeida/f108d7ea3f690e77c7cffd669f3920a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Custom login page to WordPress websites */ | |
| body { | |
| background: rgba(55, 33, 71, 1) !important; | |
| background: -moz-radial-gradient( | |
| center, | |
| ellipse cover, | |
| rgba(55, 33, 71, 1) 0%, | |
| rgba(0, 0, 0, 1) 100% | |
| ) !important; | |
| background: -webkit-gradient( | |
| radial, | |
| center center, | |
| 0px, | |
| center center, | |
| 100%, | |
| color-stop(0%, rgba(55, 33, 71, 1)), | |
| color-stop(100%, rgba(0, 0, 0, 1)) | |
| ) !important; | |
| background: -webkit-radial-gradient( | |
| center, | |
| ellipse cover, | |
| rgba(55, 33, 71, 1) 0%, | |
| rgba(0, 0, 0, 1) 100% | |
| ) !important; | |
| background: -o-radial-gradient( | |
| center, | |
| ellipse cover, | |
| rgba(55, 33, 71, 1) 0%, | |
| rgba(0, 0, 0, 1) 100% | |
| ) !important; | |
| background: -ms-radial-gradient( | |
| center, | |
| ellipse cover, | |
| rgba(55, 33, 71, 1) 0%, | |
| rgba(0, 0, 0, 1) 100% | |
| ) !important; | |
| background: radial-gradient( | |
| ellipse at center, | |
| rgba(55, 33, 71, 1) 0%, | |
| rgba(0, 0, 0, 1) 100% | |
| ) !important; | |
| filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#372147', endColorstr='#000000', GradientType=1 ) !important; | |
| } | |
| .login form { | |
| background: transparent !important; | |
| border: 0px !important; | |
| padding: 26px 24px 15px !important; | |
| } | |
| .wp-pwd .wp-core-ui .button, | |
| .wp-pwd .wp-core-ui .button-secondary { | |
| color: #5b178e !important; | |
| border-color: #5b178e !important; | |
| } | |
| .wp-pwd .wp-core-ui .button-secondary:hover, | |
| .wp-pwd .wp-core-ui .button.hover, | |
| .wp-pwd .wp-core-ui .button:hover { | |
| color: #370a58 !important; | |
| border-color: #370a58 !important; | |
| } | |
| .login label { | |
| color: #b7b7b7 !important; | |
| } | |
| } | |
| form#loginform p.submit input#wp-submit { | |
| background: #5c52ff !important; | |
| border: 0px !important; | |
| width: 100% !important; | |
| margin-top: 10px !important; | |
| padding: 5px !important; | |
| border-radius: 10px !important; | |
| letter-spacing: 1px !important; | |
| text-transform: uppercase !important; | |
| font-weight: bold !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment