styled when focused, active and visited.

This commit is contained in:
jorge-vitrubio 2022-07-19 11:09:19 +02:00
parent b2c2e3cd65
commit 177cbddb8d
1 changed files with 11 additions and 4 deletions

View File

@ -28,10 +28,17 @@ body{
background-color: rgba(240,240,255,0.5);
}
.login .button-primary {
background: rgba(90,90,250,0.7);
border-color: rgba(200,200,250,0.7);
}
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);
}