keanu-weblite/src/assets/css/main.scss
2021-01-29 21:53:22 +01:00

74 lines
No EOL
1.7 KiB
SCSS

$background: #ffffff;
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
$chat-background: $background;
$chat-standard-padding: 32px;
$chat-standard-padding-s: 16px;
$chat-standard-padding-xs: 8px;
$chat-text-size: 1.0px;
$chat-button-height: 50px;
.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;
}
.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;
border-radius: $chat-standard-padding / 2;
height: $chat-standard-padding;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}
.v-btn.filled-button {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 11 * $chat-text-size;
color: white;
border: none;
border-radius: $chat-standard-padding / 2;
height: $chat-standard-padding;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}
.dialog-title {
word-break: break-word;
}
.dialog-text {
word-break: break-word;
}
.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);
}