2020-12-15 05:23:54 -05:00
|
|
|
@brand-ieee-color: #00629b;
|
|
|
|
@brand-google-color: #276fea; // Not the "official" color but modified for a11y
|
|
|
|
@brand-twitter-color: #1da1f2;
|
|
|
|
@brand-orcid-color: #a6ce39;
|
2018-09-18 16:45:30 -04:00
|
|
|
|
2019-08-20 08:43:17 -04:00
|
|
|
.login-register-alternatives {
|
2019-12-05 14:09:31 -05:00
|
|
|
.form-group:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-08-20 08:43:17 -04:00
|
|
|
}
|
|
|
|
|
2018-09-18 16:45:30 -04:00
|
|
|
.login-register-container {
|
2019-12-05 14:09:31 -05:00
|
|
|
max-width: 400px;
|
|
|
|
margin: 0 auto;
|
2024-03-05 06:16:01 -05:00
|
|
|
padding-bottom: @line-height-computed * 5;
|
2019-12-05 14:09:31 -05:00
|
|
|
}
|
|
|
|
.login-register-header {
|
|
|
|
padding-top: @line-height-computed;
|
|
|
|
padding-bottom: @line-height-computed - 5;
|
|
|
|
border-bottom: solid 1px @hr-border;
|
|
|
|
}
|
|
|
|
.login-register-header-heading {
|
|
|
|
margin: 0;
|
|
|
|
color: @text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-register-card {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-01-31 06:28:06 -05:00
|
|
|
.login-register-form {
|
2019-12-05 14:09:31 -05:00
|
|
|
padding: @line-height-computed;
|
|
|
|
border-bottom: solid 1px @hr-border;
|
|
|
|
&:last-child {
|
|
|
|
border-bottom-width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-register-text,
|
|
|
|
.login-register-hr-text-container {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-register-text {
|
|
|
|
padding-bottom: 25px;
|
2024-03-27 10:11:31 -04:00
|
|
|
font-size: 90%;
|
2019-12-05 14:09:31 -05:00
|
|
|
&:last-child {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-register-hr-text-container {
|
|
|
|
line-height: 1;
|
|
|
|
position: relative;
|
|
|
|
padding: @line-height-computed 0;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
height: 1px;
|
|
|
|
background-color: @hr-border;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.login-register-hr-text {
|
|
|
|
position: relative;
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 0 (@line-height-computed / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-btn-icon {
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
left: 4px;
|
2022-04-06 05:59:13 -04:00
|
|
|
background: #fff url(../../../public/img/brand/lion.svg) center/20px no-repeat;
|
2019-12-05 14:09:31 -05:00
|
|
|
border-radius: 99999px;
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '\00a0'; // Non-breakable space. A non-breakable character here makes this icon work like font-awesome.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-btn-icon-twitter {
|
2022-04-06 05:59:13 -04:00
|
|
|
background-image: url(../../../public/img/other-brands/logo_twitter.svg);
|
2019-12-05 14:09:31 -05:00
|
|
|
}
|
|
|
|
|
2018-09-18 16:45:30 -04:00
|
|
|
.registration-message-heading {
|
2019-12-05 14:09:31 -05:00
|
|
|
color: @text-color;
|
2018-09-18 16:45:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.registration-message-details {
|
2019-12-05 14:09:31 -05:00
|
|
|
font-size: 90%;
|
2018-09-18 16:45:30 -04:00
|
|
|
}
|
2022-02-02 08:50:19 -05:00
|
|
|
|
|
|
|
.registration-block-separator {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2024-03-27 10:11:31 -04:00
|
|
|
|
|
|
|
.website-redesign {
|
|
|
|
.login-register-container {
|
|
|
|
max-width: 320px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-register-text {
|
|
|
|
font-size: 0.875rem;
|
|
|
|
line-height: 1.4;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
&.login-register-text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-05 08:29:26 -04:00
|
|
|
.login-register-hr-text-container {
|
|
|
|
padding: @line-height-computed 0 calc(@line-height-computed / 2) 0;
|
2024-04-23 09:03:34 -04:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
top: calc(@line-height-computed + @line-height-computed / 4);
|
|
|
|
}
|
2024-04-05 08:29:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.login-register-error-container {
|
|
|
|
padding-bottom: calc(@line-height-computed / 2);
|
|
|
|
}
|
|
|
|
|
2024-03-27 10:11:31 -04:00
|
|
|
.login-register-other-links {
|
|
|
|
padding: @line-height-computed 0;
|
|
|
|
a {
|
2024-08-01 11:14:57 -04:00
|
|
|
color: var(--green-50);
|
2024-03-27 10:11:31 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
// text-decoration-;skip-ink is for letter with descender (like 'g' and 'y')
|
|
|
|
// this will force underline to not skip the descender
|
|
|
|
text-decoration-skip-ink: none;
|
|
|
|
|
|
|
|
&:hover {
|
2024-08-01 11:14:33 -04:00
|
|
|
color: var(--green-60);
|
2024-03-27 10:11:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// for accessibility with keyboard navigation
|
|
|
|
&:focus {
|
2024-08-01 11:14:57 -04:00
|
|
|
outline: 2px solid var(--green-50);
|
2024-03-27 10:11:31 -04:00
|
|
|
outline-offset: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-23 09:57:20 -04:00
|
|
|
.flex-center {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2024-03-27 10:11:31 -04:00
|
|
|
.login-btn {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-btn-icon {
|
|
|
|
position: relative;
|
|
|
|
top: unset;
|
|
|
|
left: unset;
|
|
|
|
background: unset;
|
|
|
|
border-radius: unset;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
text-align: left;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
label {
|
|
|
|
font-size: @font-size-small;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-group-password {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
2024-08-20 08:34:56 -04:00
|
|
|
flex-direction: column;
|
2024-03-27 10:11:31 -04:00
|
|
|
|
2024-05-23 09:57:20 -04:00
|
|
|
.form-group-password-input {
|
|
|
|
input.form-control {
|
|
|
|
padding-right: 35px;
|
|
|
|
}
|
2024-03-27 10:11:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.visibility-toggle {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
width: @input-height-base;
|
|
|
|
height: @input-height-base;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
border: unset;
|
|
|
|
background-color: unset;
|
|
|
|
|
|
|
|
#visibility-icon-off {
|
|
|
|
margin-top: 2px; // workaround for the icon not having the same center as the non-slashed one
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-23 09:57:20 -04:00
|
|
|
.top-padding-computed-2 {
|
|
|
|
padding-top: @line-height-computed * 2;
|
|
|
|
}
|
|
|
|
|
2024-03-27 10:11:31 -04:00
|
|
|
.form-group-password-input {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-04-05 08:29:26 -04:00
|
|
|
|
|
|
|
.register-container {
|
|
|
|
.register-content-container {
|
|
|
|
display: flex;
|
|
|
|
background-color: #f2f4f7;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.register-form {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2024-05-15 04:50:50 -04:00
|
|
|
padding-top: @line-height-computed * 2;
|
2024-04-05 08:29:26 -04:00
|
|
|
background-color: @white;
|
|
|
|
|
|
|
|
@media (max-width: @screen-sm-max) {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-register-card {
|
|
|
|
max-width: 320px;
|
|
|
|
padding-bottom: @line-height-computed * 5; // for cookie banner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.register-illustration-container {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.register-illustration {
|
|
|
|
position: absolute;
|
|
|
|
left: 80px;
|
2024-05-28 12:44:10 -04:00
|
|
|
top: 100px;
|
2024-04-05 08:29:26 -04:00
|
|
|
|
|
|
|
// for wide screen
|
|
|
|
@media (min-width: 1700px) {
|
|
|
|
position: relative;
|
|
|
|
left: unset;
|
2024-05-28 12:44:10 -04:00
|
|
|
top: unset;
|
2024-04-05 08:29:26 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.register-main-image {
|
|
|
|
max-width: 850px;
|
|
|
|
|
|
|
|
@media (max-width: 1350px) {
|
|
|
|
max-width: 750px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1150px) {
|
|
|
|
max-width: 670px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sticky-tags {
|
|
|
|
position: absolute;
|
|
|
|
height: 210px;
|
|
|
|
bottom: -135px;
|
|
|
|
right: 130px;
|
|
|
|
|
|
|
|
// for wide screen
|
|
|
|
@media (min-width: 1700px) {
|
|
|
|
right: calc(50% - 300px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tos-agreement-notice {
|
|
|
|
text-align: left;
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
a {
|
2024-08-01 11:14:57 -04:00
|
|
|
color: var(--green-50);
|
2024-04-05 08:29:26 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
// text-decoration-;skip-ink is for letter with descender (like 'g' and 'y')
|
|
|
|
// this will force underline to not skip the descender
|
|
|
|
text-decoration-skip-ink: none;
|
|
|
|
|
|
|
|
&:hover {
|
2024-08-01 11:14:33 -04:00
|
|
|
color: var(--green-60);
|
2024-04-05 08:29:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// for accessibility with keyboard navigation
|
|
|
|
&:focus {
|
2024-08-01 11:14:57 -04:00
|
|
|
outline: 2px solid var(--green-50);
|
2024-04-05 08:29:26 -04:00
|
|
|
outline-offset: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-17 09:06:33 -04:00
|
|
|
|
|
|
|
.register-header-logo {
|
|
|
|
&:focus {
|
2024-08-01 11:14:57 -04:00
|
|
|
outline: 2px solid var(--green-50);
|
2024-04-17 09:06:33 -04:00
|
|
|
}
|
|
|
|
}
|
2024-03-27 10:11:31 -04:00
|
|
|
}
|