2019-04-02 15:03:26 +02:00
|
|
|
@import "colors";
|
2020-07-27 16:35:05 +02:00
|
|
|
@import "constants";
|
2019-04-02 15:03:26 +02:00
|
|
|
|
|
|
|
.france-connect-login {
|
2020-07-27 16:35:05 +02:00
|
|
|
h2 {
|
|
|
|
color: $black;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.france-connect-login-buttons,
|
|
|
|
.france-connect-help-link {
|
2019-04-02 15:03:26 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.france-connect-login-button {
|
|
|
|
display: inline-block;
|
|
|
|
height: 52px;
|
|
|
|
width: 186px;
|
|
|
|
margin: auto;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
background-image: image-url("login-with-fc.svg"), image-url("login-with-fc-hover.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 0;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-image: image-url("login-with-fc-hover.svg");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.france-connect-login-separator {
|
2020-07-27 16:35:05 +02:00
|
|
|
display: flex;
|
|
|
|
flex-basis: 100%;
|
|
|
|
align-items: center;
|
|
|
|
color: $black;
|
|
|
|
text-transform: uppercase;
|
|
|
|
padding-bottom: $default-padding;
|
|
|
|
padding-top: $default-padding;
|
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
flex-grow: 1;
|
|
|
|
background: $dark-grey;
|
|
|
|
height: 1px;
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
margin-right: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
margin-left: $default-spacer;
|
|
|
|
}
|
2019-04-02 15:03:26 +02:00
|
|
|
}
|