You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
229 lines
4.2 KiB
SCSS
229 lines
4.2 KiB
SCSS
.session {
|
|
&-fullscreen {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: white;
|
|
}
|
|
&-content {
|
|
.session-button.brand-outline.brand.green:hover {
|
|
background-color: var(--color-accent);
|
|
}
|
|
&-accent {
|
|
&-text {
|
|
font-family: $session-font-accent;
|
|
.title {
|
|
font-size: 90px;
|
|
font-weight: 700;
|
|
line-height: 100px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-registration {
|
|
padding-inline-end: 128px;
|
|
}
|
|
|
|
&-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;
|
|
|
|
.session-button {
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
width: 100%;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
@mixin registration-label-mixin {
|
|
color: var(--color-text);
|
|
|
|
font-weight: bold;
|
|
padding: 20px;
|
|
}
|
|
|
|
&__welcome-session {
|
|
@include registration-label-mixin;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
line-height: 14px;
|
|
padding-top: 2em;
|
|
text-align: center;
|
|
}
|
|
|
|
&__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: $session-font-default;
|
|
color: var(--color-text);
|
|
|
|
padding: 2px 0 2px 0;
|
|
transition: opacity var(--default-duration);
|
|
opacity: 1;
|
|
position: relative;
|
|
|
|
label {
|
|
line-height: 14px;
|
|
opacity: 0;
|
|
color: var(--color-text);
|
|
|
|
font-size: 10px;
|
|
line-height: 11px;
|
|
position: absolute;
|
|
top: 0px;
|
|
}
|
|
|
|
&.filled {
|
|
opacity: 1;
|
|
}
|
|
|
|
&.error {
|
|
color: var(--color-destructive);
|
|
}
|
|
|
|
input {
|
|
border: none;
|
|
outline: 0;
|
|
height: 14px;
|
|
width: 280px;
|
|
background: transparent;
|
|
color: var(--color-text);
|
|
|
|
font-family: $session-font-default;
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
hr {
|
|
border: var(--border-session);
|
|
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 0px;
|
|
}
|
|
|
|
.session-icon-button {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
right: 0px;
|
|
}
|
|
}
|
|
|
|
&-terms-conditions-agreement {
|
|
padding-top: var(--margins-md);
|
|
|
|
color: var(--color-text-subtle);
|
|
text-align: center;
|
|
font-size: 12px;
|
|
|
|
a {
|
|
white-space: nowrap;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
color: var(--color-text-subtle);
|
|
transition: var(--default-duration);
|
|
|
|
&:visited &:link {
|
|
color: var(--color-text-subtle);
|
|
}
|
|
|
|
&:hover {
|
|
color: var(--color-text);
|
|
}
|
|
}
|
|
}
|
|
|
|
&-description-long {
|
|
padding-top: 0;
|
|
padding-bottom: 20px;
|
|
// TODO Theming needs to be updated
|
|
color: rgba(black, 0.6);
|
|
text-align: center;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
|
|
ol {
|
|
margin-inline-start: 20px;
|
|
padding: 0px;
|
|
text-align: justify;
|
|
}
|
|
}
|
|
|
|
&-id-editable {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
border-radius: 13px;
|
|
border: 1px solid subtle(#353535);
|
|
margin-bottom: 20px;
|
|
|
|
textarea {
|
|
width: 100%;
|
|
outline: 0;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--color-text);
|
|
font-size: var(--font-size-md);
|
|
line-height: 18px;
|
|
text-align: center;
|
|
overflow-wrap: break-word;
|
|
padding: 0px 5px 20px 5px;
|
|
display: inline-block;
|
|
font-family: $session-font-mono;
|
|
user-select: all;
|
|
overflow: hidden;
|
|
resize: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
[contenteditable='true']:empty::before {
|
|
content: attr(placeholder);
|
|
|
|
color: var(--color-text-subtle);
|
|
font-size: var(--font-size-sm);
|
|
}
|