2025-05-13 22:38:10 +02:00
|
|
|
@forward 'variables';
|
|
|
|
|
@forward 'utilities';
|
|
|
|
|
@use 'variables' as *;
|
|
|
|
|
@use 'utilities' as *;
|
2020-12-09 15:20:50 +01:00
|
|
|
|
2021-10-20 17:08:18 +02:00
|
|
|
@font-face {
|
|
|
|
|
font-family: "Inter";
|
|
|
|
|
src: url("~@/assets/fonts/inter/Inter-Light.ttf") format("truetype");
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "Inter";
|
|
|
|
|
src: url("~@/assets/fonts/inter/Inter-Regular.ttf") format("truetype");
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "Inter";
|
|
|
|
|
src: url("~@/assets/fonts/inter/Inter-Bold.ttf") format("truetype");
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "Poppins";
|
|
|
|
|
src: url("~@/assets/fonts/poppins/Poppins-Regular.ttf") format("truetype");
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "Poppins";
|
|
|
|
|
src: url("~@/assets/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "Poppins";
|
|
|
|
|
src: url("~@/assets/fonts/poppins/Poppins-Bold.ttf") format("truetype");
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "Poppins";
|
|
|
|
|
src: url("~@/assets/fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-18 11:30:30 +01:00
|
|
|
html { height:100%; }
|
|
|
|
|
body { position:absolute; top:0; bottom:0; right:0; left:0; }
|
|
|
|
|
|
2021-01-21 12:12:55 +01:00
|
|
|
.h1 {
|
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
font-size: 36 * $chat-text-size;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: black;
|
|
|
|
|
line-height: 108.5%;
|
|
|
|
|
letter-spacing: -0.8px;
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.h2 {
|
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 24 * $chat-text-size;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-17 10:49:54 +01:00
|
|
|
.h3 {
|
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 18 * $chat-text-size;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #505050;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-11 13:55:10 +01:00
|
|
|
.h4 {
|
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 11 * $chat-text-size;
|
|
|
|
|
color: black;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-20 14:44:10 +01:00
|
|
|
.v-btn.outlined-button {
|
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 11 * $chat-text-size;
|
|
|
|
|
color: black;
|
|
|
|
|
background-color: white !important;
|
|
|
|
|
border: 1px solid black;
|
2025-05-13 21:36:59 +02:00
|
|
|
border-radius: $chat-standard-padding * 0.5;
|
2021-01-20 14:44:10 +01:00
|
|
|
height: $chat-standard-padding;
|
|
|
|
|
margin-top: $chat-standard-padding-xs;
|
|
|
|
|
margin-bottom: $chat-standard-padding-xs;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-27 09:38:27 +01:00
|
|
|
.v-btn.text-button {
|
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
|
font-weight: 700;
|
2023-10-12 09:23:47 +00:00
|
|
|
font-size: 11 * $chat-text-size !important;
|
2021-03-27 09:38:27 +01:00
|
|
|
border: none;
|
|
|
|
|
height: $chat-standard-padding;
|
|
|
|
|
margin-top: $chat-standard-padding-xs;
|
|
|
|
|
margin-bottom: $chat-standard-padding-xs;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-20 14:44:10 +01:00
|
|
|
.v-btn.filled-button {
|
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 11 * $chat-text-size;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
2025-05-13 21:36:59 +02:00
|
|
|
border-radius: $chat-standard-padding * 0.5;
|
2021-07-17 20:17:57 +02:00
|
|
|
height: $chat-standard-padding !important;
|
|
|
|
|
min-height: $chat-standard-padding !important;
|
2021-01-20 14:44:10 +01:00
|
|
|
margin-top: $chat-standard-padding-xs;
|
|
|
|
|
margin-bottom: $chat-standard-padding-xs;
|
2023-03-01 08:49:20 +05:30
|
|
|
|
|
|
|
|
.v-icon {
|
|
|
|
|
height: 14px;
|
|
|
|
|
width: 14px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
2021-01-28 22:13:08 +01:00
|
|
|
}
|
|
|
|
|
|
2025-05-08 11:52:39 +02:00
|
|
|
.v-dialog-rounded > * {
|
2021-03-27 09:38:27 +01:00
|
|
|
border-radius: 20px !important;
|
2025-05-08 11:52:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.v-dialog {
|
2021-03-27 09:38:27 +01:00
|
|
|
.dialog-content {
|
2025-05-08 11:52:39 +02:00
|
|
|
border-radius: 20px !important;
|
2021-03-27 09:38:27 +01:00
|
|
|
padding: 20px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
2025-05-08 11:52:39 +02:00
|
|
|
|
2021-03-27 09:38:27 +01:00
|
|
|
.dialog-title {
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
text-align: center;
|
2025-05-08 11:52:39 +02:00
|
|
|
padding: 16px 24px 10px 24px;
|
2021-03-27 09:38:27 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
2021-11-16 21:26:00 +02:00
|
|
|
|
2021-03-27 09:38:27 +01:00
|
|
|
.dialog-text {
|
|
|
|
|
text-align: left;
|
|
|
|
|
word-break: break-word;
|
2025-06-19 13:05:38 +02:00
|
|
|
white-space: normal;
|
2025-05-08 11:52:39 +02:00
|
|
|
|
2021-03-27 09:38:27 +01:00
|
|
|
a {
|
|
|
|
|
color: black;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
2021-11-16 21:26:00 +02:00
|
|
|
}
|
2021-01-29 21:53:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.build-version {
|
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 117%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
letter-spacing: 0.4px;
|
|
|
|
|
color: rgba(0, 0, 0, 0.6);
|
2021-11-16 21:26:00 +02:00
|
|
|
}
|
2025-05-08 13:10:06 +02:00
|
|
|
|
|
|
|
|
.v-card-title {
|
|
|
|
|
display: flex;
|
2025-05-08 15:14:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fluid-radio {
|
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
.v-label {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2025-05-08 13:10:06 +02:00
|
|
|
}
|