Style joining page

This commit is contained in:
N-Pex 2020-12-16 15:57:44 +01:00
parent 2ebe4d982c
commit 3067fcbfc7
5 changed files with 206 additions and 14 deletions

View file

@ -1,11 +1,5 @@
@import "@/assets/css/main.scss";
$chat-background: $background;
$chat-standard-padding: 32px;
$chat-standard-padding-s: 16px;
$chat-standard-padding-xs: 8px;
$chat-text-size: 0.7pt;
.chat-root {
position: absolute;
left: 0px;

115
src/assets/css/join.scss Normal file
View file

@ -0,0 +1,115 @@
@import "@/assets/css/main.scss";
.v-btn.btn-light {
font-family: sans-serif;
font-weight: 700;
font-size: 11.54 * $chat-text-size;
color: black;
background-color: white !important;
border: 1px solid black;
border-radius: $chat-button-height / 2;
min-height: 0;
height: $chat-button-height !important;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}
.v-btn.btn-dark {
font-family: sans-serif;
font-weight: 700;
font-size: 11.54 * $chat-text-size;
color: white;
background-color: black !important;
border: 1px solid black;
border-radius: $chat-button-height / 2;
min-height: 0;
height: $chat-button-height !important;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}
.join-root {
margin-top: 10%;
padding: 40px;
.btn-login {
position: absolute;
top: 0;
right: 0;
margin: 20px;
}
}
.join-avatar {
background-color: #ededed;
width: 100px !important;
height: 100px !important;
margin-bottom: 40px;
}
.join-title {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 40 * $chat-text-size;
line-height: 108.5%;
/* or 43px */
text-align: center;
letter-spacing: -0.8px;
color: #000000;
overflow-wrap: break-word;
}
.join-message {
font-family: sans-serif;
font-weight: 400;
font-size: 16 * $chat-text-size;
color: black;
margin-top: 20px;
margin-bottom: 20px;
}
.join-privacy {
font-family: sans-serif;
font-weight: 400;
font-size: 12 * $chat-text-size;
color: #464646;
margin-top: 20px;
margin-bottom: 20px;
a {
color: #464646;
}
}
.join-or-divider {
display: block;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 20px;
margin-right: 20px;
height: 20px;
color: #666666;
text-align: center;
line-height: var(--v-theme-title-featured-line-height);
position: relative;
font-family: sans-serif;
font-style: normal;
font-weight: bold;
font-size: 9.88014 * $chat-text-size;
line-height: 140%;
/* identical to box height, or 14px */
letter-spacing: 0.29px;
color: #9C9CAE;
&::before {
position: absolute;
width: 100%;
left: 0;
right: 0;
top: 5px;
height: 1px;
background: #9C9CAE;
content: " ";
}
}

View file

@ -1,3 +1,10 @@
$background: #ffffff;
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
$chat-background: $background;
$chat-standard-padding: 32px;
$chat-standard-padding-s: 16px;
$chat-standard-padding-xs: 8px;
$chat-text-size: 0.7pt;
$chat-button-height: 50px;