2020-06-05 07:50:04 +02:00
|
|
|
@import "fonts";
|
|
|
|
|
|
|
|
*, *::before, *::after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: $standardFont;
|
2020-09-18 13:26:28 +02:00
|
|
|
font-size: 16px;
|
2020-06-05 07:50:04 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2020-08-06 14:38:19 +02:00
|
|
|
margin: 0 0 100px 0;
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2020-07-08 07:32:48 +02:00
|
|
|
width: 100%;
|
2020-08-06 14:38:19 +02:00
|
|
|
min-height: 100%;
|
2020-07-08 07:32:48 +02:00
|
|
|
font-weight: 300;
|
2020-06-05 07:50:04 +02:00
|
|
|
background-color: $backgroundColor;
|
|
|
|
color: $fontColor;
|
2020-07-08 07:32:48 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: bottom right;
|
2020-07-08 14:14:24 +02:00
|
|
|
background-size: contain;
|
2020-07-08 07:32:48 +02:00
|
|
|
@if($bodyImgDark != "") {
|
|
|
|
background-image: url($bodyImgDark);
|
|
|
|
}
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: $fontColor;
|
|
|
|
font-family: $headerFont;
|
2020-07-08 07:32:48 +02:00
|
|
|
font-weight: 300;
|
2020-07-22 11:43:32 +02:00
|
|
|
font-size: $headerSize;
|
2020-09-18 13:26:28 +02:00
|
|
|
text-align: center;
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
2020-08-06 14:38:19 +02:00
|
|
|
h2 {
|
|
|
|
color: $fontColor;
|
|
|
|
font-family: $headerFont;
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: $header2Size;
|
|
|
|
}
|
|
|
|
|
2020-06-05 07:50:04 +02:00
|
|
|
p {
|
2020-06-17 08:06:40 +02:00
|
|
|
font-weight: 300;
|
2020-07-20 10:00:29 +02:00
|
|
|
text-align: center;
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-18 13:26:28 +02:00
|
|
|
.head {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 1000px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content form {
|
2020-06-05 07:50:04 +02:00
|
|
|
margin: auto;
|
|
|
|
padding: 20px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primaryColor;
|
|
|
|
text-decoration: none;
|
2020-07-08 07:32:48 +02:00
|
|
|
font-weight: 400;
|
2020-06-05 07:50:04 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primaryColorHover;
|
|
|
|
}
|
2020-09-18 13:26:28 +02:00
|
|
|
|
|
|
|
&.tos-link {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
2020-09-18 13:26:28 +02:00
|
|
|
button, .button {
|
2020-06-05 07:50:04 +02:00
|
|
|
background-color: $backgroundColor;
|
|
|
|
color: $primaryColor;
|
2020-09-18 13:26:28 +02:00
|
|
|
border: 1px solid $primaryColor;
|
2020-06-05 07:50:04 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 600px;
|
|
|
|
height: $inputHeight;
|
|
|
|
transition: all 0.3s ease 0s;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
2020-09-18 13:26:28 +02:00
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
2020-10-19 17:10:02 +02:00
|
|
|
line-height: 44px;
|
|
|
|
padding: 1px 6px;
|
2020-09-18 13:26:28 +02:00
|
|
|
|
2020-06-05 07:50:04 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: $primaryColorHover;
|
2020-07-16 14:26:08 +02:00
|
|
|
color: $backgroundColor;
|
2020-09-18 13:26:28 +02:00
|
|
|
border: 1px solid $primaryColorHover;
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.primary {
|
|
|
|
background-color: $primaryColor;
|
|
|
|
color: $fontColor;
|
|
|
|
border: none;
|
|
|
|
&:hover {
|
|
|
|
background-color: $primaryColorHover;
|
|
|
|
}
|
|
|
|
}
|
2020-07-16 14:26:08 +02:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background-color: $inputBorderColor;
|
2020-09-18 13:26:28 +02:00
|
|
|
border: 1px solid $inputBorderColor;
|
2020-07-16 14:26:08 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $inputBorderColor;
|
2020-09-18 13:26:28 +02:00
|
|
|
border: 1px solid $inputBorderColor;
|
2020-07-16 14:26:08 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-19 17:10:02 +02:00
|
|
|
|
|
|
|
&.google {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
padding: 0 1px;
|
|
|
|
color: $idpGoogleFontColor;
|
|
|
|
background-color: $idpGoogleBackgroundColor;
|
|
|
|
|
|
|
|
span.logo {
|
|
|
|
height: 46px;
|
|
|
|
width: 46px;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
background-image: url($idpGoogleImg + '.png');
|
|
|
|
background-size: 25px;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.provider-name {
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
}
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
2020-09-18 13:26:28 +02:00
|
|
|
|
|
|
|
|
2020-06-05 07:50:04 +02:00
|
|
|
input:not([type='radio']), select {
|
|
|
|
background-color: $inputBackgroundColor;
|
|
|
|
color: $fontColor;
|
|
|
|
height: $inputHeight;
|
2020-09-18 13:26:28 +02:00
|
|
|
border: 1px solid $inputBorderColor;
|
2020-06-05 07:50:04 +02:00
|
|
|
border-radius: 5px;
|
2020-09-18 13:26:28 +02:00
|
|
|
padding-left: 8px;
|
2020-06-05 07:50:04 +02:00
|
|
|
}
|
|
|
|
|
2020-07-20 10:00:29 +02:00
|
|
|
%profile-image {
|
|
|
|
.profile-image {
|
2020-07-22 11:43:32 +02:00
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
2020-07-20 10:00:29 +02:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2020-07-22 11:43:32 +02:00
|
|
|
@include retina-background-image($profileImgDark, "png", false, 80px, 80px);
|
2020-07-20 10:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .profile-image {
|
2020-07-22 11:43:32 +02:00
|
|
|
@include retina-background-image($profileImgDark, "png", true, 80px, 80px);
|
2020-07-20 10:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-profile {
|
|
|
|
@extend %profile-image;
|
2020-07-22 11:43:32 +02:00
|
|
|
.profile-image {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2020-07-20 10:00:29 +02:00
|
|
|
|
|
|
|
.names {
|
|
|
|
padding: 10px 0;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
div:first-of-type {
|
2020-09-18 13:26:28 +02:00
|
|
|
font-size: $header3Size;
|
2020-07-22 11:43:32 +02:00
|
|
|
font-weight: 300;
|
2020-07-20 10:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div:nth-of-type(2) {
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
font-style: italic;
|
|
|
|
color: $labelColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-05 07:50:04 +02:00
|
|
|
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%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-07 14:52:49 +02:00
|
|
|
.field.check-box {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
input[type='checkbox'] {
|
2020-09-18 13:26:28 +02:00
|
|
|
height: 16px;
|
2020-09-07 14:52:49 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
& label {
|
2020-09-18 13:26:28 +02:00
|
|
|
height: 16px;
|
2020-09-07 14:52:49 +02:00
|
|
|
text-transform: inherit;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 2px 0 0 15px;
|
|
|
|
width: 100%;
|
2020-09-18 13:26:28 +02:00
|
|
|
color: $fontColor;
|
2020-09-07 14:52:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-05 07:50:04 +02:00
|
|
|
label {
|
|
|
|
color: $labelColor;
|
|
|
|
text-transform: uppercase;
|
2020-09-18 13:26:28 +02:00
|
|
|
font-size: 0.8rem;
|
2020-06-05 07:50:04 +02:00
|
|
|
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 {
|
2020-07-22 11:43:32 +02:00
|
|
|
margin-bottom: 40px;
|
2020-06-17 08:06:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button.user-selection {
|
2020-07-20 10:00:29 +02:00
|
|
|
@extend %profile-image;
|
2020-07-22 11:43:32 +02:00
|
|
|
.profile-image {
|
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
|
|
|
}
|
2020-06-17 08:06:40 +02:00
|
|
|
|
|
|
|
.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 {
|
2020-07-22 11:43:32 +02:00
|
|
|
width: 80px;
|
|
|
|
height: 60px;
|
2020-07-08 07:32:48 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2020-07-22 11:43:32 +02:00
|
|
|
@include retina-background-image($otherUserImgDark, "png", false, 80px, 60px);
|
2020-06-17 08:06:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.other-user-image {
|
2020-07-08 07:32:48 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2020-07-22 11:43:32 +02:00
|
|
|
@include retina-background-image($otherUserImgDark, "png", true, 80px, 60px);
|
2020-06-17 08:06:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > div:nth-of-type(2) {
|
|
|
|
margin: 15px;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
|
|
|
}
|
2020-07-16 14:26:08 +02:00
|
|
|
|
|
|
|
ul#passwordcomplexity {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
2020-09-18 13:26:28 +02:00
|
|
|
margin-bottom: 0;
|
2020-07-16 14:26:08 +02:00
|
|
|
|
|
|
|
li {
|
|
|
|
flex: 1 0 50%;
|
|
|
|
display: block;
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 12px;
|
|
|
|
|
|
|
|
i {
|
|
|
|
height: 26px;
|
|
|
|
padding-right: 10px;
|
|
|
|
vertical-align: middle;
|
|
|
|
color: $okColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li.invalid {
|
|
|
|
i {
|
|
|
|
color: $nokColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-06 14:38:19 +02:00
|
|
|
|
|
|
|
#loginname {
|
|
|
|
display: flex;
|
|
|
|
.loginname-suffix {
|
|
|
|
padding-left: 5px;
|
|
|
|
line-height: 50px;
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2020-07-08 07:32:48 +02:00
|
|
|
@if($footerimgDark != "") {
|
|
|
|
background-image: url($footerimgDark);
|
|
|
|
}
|
2020-06-05 07:50:04 +02:00
|
|
|
width: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
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';
|
|
|
|
}
|
2020-09-07 14:52:49 +02:00
|
|
|
|
|
|
|
.free-tier {
|
2020-09-18 13:26:28 +02:00
|
|
|
border: 2px solid $nokColor;
|
2020-09-07 14:52:49 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
2020-09-18 13:26:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
color: $nokColor;
|
2020-10-19 17:10:02 +02:00
|
|
|
}
|