hangar-wp-theme/custom-login/custom-login.css

45 lines
1.1 KiB
CSS

@charset "utf-8";
/*
Document : custom-login
Created on : 2022 07 11
Author : jorge - hangar.org
Description: style the wp login
*/
html {}
body{
background: none;
background-color: transparent;
background-image: url('../images/motiufons.gif');
background-repeat: repeat;
}
.login h1 a {
background-image: url('../images/hangar-logo-claim.svg');
background-repeat: no-repeat;
background-position: center;
background-size: contain;
height: 7rem;
width: auto;
}
.login form {
border: none;
box-shadow: none;
background-color: rgba(240,240,255,0.5);
}
.login .button-primary {
background: rgba(90,90,250,1);
border-color: rgba(200,200,250,1);
box-shadow: 0 0 0 1px #fff,0 0 0 3px rgb(200,200,250);
}
.login .button-primary:hover {
background: rgba(0,0,250,1);
border-color: rgba(90,90,250,1);
box-shadow: 0 0 0 1px #fff,0 0 0 3px rgb(90,90,250);
}
.login .button-primary:active,.login .button-primary:focus, .login .button-primary:visited{
background: rgba(90,90,250,0.7);
border-color: rgba(200,200,250,0.7);
box-shadow: 0 0 0 1px #fff,0 0 0 3px rgb(200,200,250);
}