session-desktop/stylesheets/_session_signin.scss

224 lines
4.2 KiB
SCSS
Raw Normal View History

.session {
&-fullscreen {
width: 100%;
height: 100%;
background-color: var(--background-primary-color);
color: var(--text-primary-color);
}
&-content {
&-accent {
&-text {
font-family: var(--font-accent), var(--font-default);
text-align: center;
.title {
2021-09-02 09:20:44 +02:00
font-size: 90px;
font-weight: 700;
2021-09-02 09:20:44 +02:00
line-height: 100px;
}
}
}
&-registration {
padding-inline-end: 128px;
}
2020-05-26 04:34:04 +02:00
&-header {
display: flex;
flex-direction: row;
width: 100%;
justify-content: space-between;
padding: 17px 20px;
}
&-body {
display: flex;
flex-direction: row;
flex: 1;
align-items: center;
width: 100%;
padding-bottom: 20px;
}
}
&-registration {
&-container {
display: flex;
flex-direction: column;
width: 289px;
2020-01-05 23:53:18 +01:00
.session-button {
width: 80%;
margin: auto;
2020-01-05 23:53:18 +01:00
}
}
&__content {
width: 100%;
padding-top: 20px;
}
@mixin registration-label-mixin {
color: var(--text-primary-color);
2019-12-19 01:56:30 +01:00
font-weight: bold;
2021-08-16 01:27:29 +02:00
padding: 20px;
}
&__welcome-session {
@include registration-label-mixin;
2020-01-06 01:30:22 +01:00
font-size: 14px;
font-weight: 700;
2020-01-06 01:30:22 +01:00
line-height: 14px;
padding-top: 2rem;
2020-01-06 01:30:22 +01:00
text-align: center;
}
2019-12-30 06:10:45 +01:00
&__unique-session-id {
@include registration-label-mixin;
text-align: center;
}
&__entry-fields {
margin: 0px;
padding-bottom: 30px;
}
}
&-input-floating-label-show-hide {
padding-inline-end: 30px;
}
&-input-with-label-container {
height: 46.5px;
width: 280px;
font-family: var(--font-default);
color: var(--text-primary-color);
padding: 2px 0 2px 0;
transition: opacity var(--default-duration);
opacity: 1;
position: relative;
label {
line-height: 14px;
opacity: 0;
color: var(--text-primary-color);
font-size: 10px;
line-height: 11px;
position: absolute;
top: 0px;
}
&.filled {
opacity: 1;
}
2020-01-06 01:30:22 +01:00
&.error {
color: var(--danger-color);
2020-01-06 01:30:22 +01:00
}
input {
border: none;
outline: 0;
height: 14px;
width: 280px;
background: transparent;
color: var(--input-text-color);
font-family: var(--font-default);
font-size: 12px;
line-height: 14px;
position: absolute;
top: 50%;
transform: translateY(-50%);
&::placeholder {
color: var(--input-text-placeholder-color);
}
}
hr {
border: 1px solid var(--border-color);
width: 100%;
position: absolute;
bottom: 0px;
}
}
&-terms-conditions-agreement {
padding-top: var(--margins-md);
color: var(--text-secondary-color);
text-align: center;
font-size: 12px;
a {
white-space: nowrap;
font-weight: bold;
2020-01-07 00:08:02 +01:00
text-decoration: none;
color: var(--text-secondary-color);
transition: var(--default-duration);
&:visited &:link {
color: var(--text-secondary-color);
}
&:hover {
color: var(--text-primary-color);
}
}
}
&-description-long {
2021-08-16 01:27:29 +02:00
padding-top: 0;
2020-07-06 08:06:24 +02:00
padding-bottom: 20px;
color: var(--text-secondary-color);
text-align: center;
font-size: 12px;
line-height: 20px;
2020-07-06 08:06:24 +02:00
ol {
margin-inline-start: 20px;
2020-07-06 08:06:24 +02:00
padding: 0px;
text-align: justify;
}
}
&-id-editable {
2020-01-30 00:55:28 +01:00
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
border-radius: 13px;
border: 1px solid var(--border-color);
margin-bottom: 20px;
2020-01-30 00:55:28 +01:00
textarea {
width: 100%;
outline: 0;
border: none;
background: transparent;
color: var(--text-primary-color);
font-size: var(--font-size-md);
2020-01-30 00:55:28 +01:00
line-height: 18px;
text-align: center;
overflow-wrap: break-word;
2020-02-14 04:12:03 +01:00
padding: 0px 5px 20px 5px;
2020-01-30 00:55:28 +01:00
display: inline-block;
font-family: var(--font-mono), var(--font-default);
2020-01-30 00:55:28 +01:00
user-select: all;
2020-05-26 04:34:04 +02:00
overflow: hidden;
resize: none;
2020-01-30 00:55:28 +01:00
}
}
}
[contenteditable='true']:empty::before {
content: attr(placeholder);
color: var(--text-secondary-color);
font-size: var(--font-size-sm);
}