2020-06-05 07:50:04 +02:00
|
|
|
@import "fonts";
|
|
|
|
|
|
|
|
*, *::before, *::after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: $standardFont;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
background-color: $backgroundColor;
|
|
|
|
color: $fontColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: $fontColor;
|
|
|
|
font-family: $headerFont;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2020-06-17 08:06:40 +02:00
|
|
|
font-weight: 300;
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
background-image: url($logoImgDark);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
height: 80px;
|
|
|
|
margin: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
margin: auto;
|
|
|
|
padding: 20px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primaryColor;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primaryColorHover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
text-transform: uppercase;
|
|
|
|
background-color: $backgroundColor;
|
|
|
|
color: $primaryColor;
|
|
|
|
border: 2px solid $primaryColor;
|
|
|
|
border-radius: 5px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 600px;
|
|
|
|
height: $inputHeight;
|
|
|
|
transition: all 0.3s ease 0s;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
&:hover {
|
|
|
|
background-color: $primaryColorHover;
|
|
|
|
border: 2px solid $primaryColorHover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.primary {
|
|
|
|
background-color: $primaryColor;
|
|
|
|
color: $fontColor;
|
|
|
|
border: none;
|
|
|
|
&:hover {
|
|
|
|
background-color: $primaryColorHover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input:not([type='radio']), select {
|
|
|
|
background-color: $inputBackgroundColor;
|
|
|
|
color: $fontColor;
|
|
|
|
height: $inputHeight;
|
|
|
|
border: 2px solid $inputBorderColor;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
.field {
|
|
|
|
display: grid;
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.field.radio-button {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
input[type='radio'] {
|
|
|
|
height: 20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
& label {
|
|
|
|
height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 0 0 15px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
color: $labelColor;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
|
|
|
|
span.optional {
|
|
|
|
font-style: italic;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
padding: 20px 0;
|
|
|
|
|
|
|
|
.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
button, a {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
}
|
2020-06-17 08:06:40 +02:00
|
|
|
|
|
|
|
button.clean {
|
|
|
|
border: none;
|
|
|
|
height: auto;
|
|
|
|
color: $fontColor;
|
|
|
|
text-align: left;
|
|
|
|
text-transform: unset;
|
|
|
|
display: flex;
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border: none;
|
|
|
|
background-color: $buttonBackgroundColorHover;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-selection-list {
|
|
|
|
margin-bottom: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.user-selection {
|
|
|
|
.profile-image {
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
@include retina-background-image($profileImgDark, "png", false, 100px, 100px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.profile-image {
|
|
|
|
@include retina-background-image($profileImgDark, "png", true, 100px, 100px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sessionstate {
|
|
|
|
display: inline-block;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
border-radius: 20px;
|
|
|
|
border-color: $inputBorderColor;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 10px;
|
|
|
|
|
|
|
|
&.sessionstate-0 {
|
|
|
|
background-color: #138D00;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.sessionstate-1 {
|
|
|
|
background-color: #BC372E;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&.names {
|
|
|
|
margin: 15px;
|
|
|
|
|
|
|
|
.displayname {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
|
|
|
.loginname {
|
|
|
|
color: $labelColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button.other-user {
|
|
|
|
.user-selection+&{
|
|
|
|
margin-top: 80px;
|
|
|
|
}
|
|
|
|
.other-user-image {
|
|
|
|
width: 100px;
|
|
|
|
height: 75px;
|
|
|
|
@include retina-background-image($otherUserImgDark, "png", false, 100px, 75px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.other-user-image {
|
|
|
|
@include retina-background-image($otherUserImgDark, "png", true, 100px, 75px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > div:nth-of-type(2) {
|
|
|
|
margin: 15px;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
|
|
|
}
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#copy-secret {
|
|
|
|
visibility: hidden;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
#qrcode {
|
|
|
|
text-align: center;
|
|
|
|
|
2020-06-17 08:06:40 +02:00
|
|
|
svg rect.color {
|
|
|
|
fill: $fontColor;
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
2020-06-17 08:06:40 +02:00
|
|
|
svg rect.bg-color {
|
|
|
|
fill: $backgroundColor;
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#secret {
|
|
|
|
.copy {
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
background-image: url($footerimgDark);
|
|
|
|
width: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
height: 44vw;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.material-icons {
|
|
|
|
font-family: 'Material Icons';
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 24px; /* Preferred icon size */
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 1;
|
|
|
|
text-transform: none;
|
|
|
|
letter-spacing: normal;
|
|
|
|
word-wrap: normal;
|
|
|
|
white-space: nowrap;
|
|
|
|
direction: ltr;
|
|
|
|
|
|
|
|
/* Support for all WebKit browsers. */
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
/* Support for Safari and Chrome. */
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
|
|
|
/* Support for Firefox. */
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
|
|
|
/* Support for IE. */
|
|
|
|
font-feature-settings: 'liga';
|
|
|
|
}
|