misc: update FranceConnect button to new version (#67514)

This commit is contained in:
Frédéric Péters 2022-07-19 22:10:09 +02:00
parent 6558231a4e
commit aec96ae020
2 changed files with 18 additions and 71 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -26,30 +26,24 @@ div#fc-button {
box-sizing: border-box; box-sizing: border-box;
max-width: 100%; max-width: 100%;
border: none; border: none;
border-radius: 5px;
&:active {
box-shadow: 0px 1px rgba(0, 0, 0, 0.6) inset, -1px 0px rgba(0, 0, 0, 0.1) inset,
1px 0px rgba(0, 0, 0, 0.3) inset, 0px -1px rgba(0, 0, 0, 0.05) inset;
}
a.button { a.button {
text-decoration: none; text-decoration: none;
width: 300px; width: 216px;
height: 0; height: 60px;
padding-top: 27%;
max-width: 100%; max-width: 100%;
background-image: url(../img/FC-connect-button.svg); background-image: url(../img/FC-connect-button.svg);
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
background-color: #034ea2; background-color: #000091;
display: block; display: block;
border: 1px solid #034ea2; border: 1px solid #000091;
border-radius: 3px; border-radius: 3px;
margin: auto; margin: auto;
&:hover { &:hover {
background-color: #2183f0; background-color: #0000DF;
} }
&.linking-button { &:focus-visible {
width: 230px; outline: 2px solid #0063cb;
} }
} }
} }