messenger/css/main.scss
sairaj mote 8eb3a988d1 Feature update and code refactoring
-- added option to block a FLO ID
2022-06-25 01:15:08 +05:30

2141 lines
38 KiB
SCSS

* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
:root {
font-size: clamp(1rem, 1.2vmax, 1.2rem);
}
html,
body {
height: 100%;
}
body {
--accent-color: #3d5afe;
--secondary-color: #ffac2e;
--text-color: 20, 20, 20;
--foreground-color: 252, 253, 255;
--background-color: 241, 243, 248;
--danger-color: rgb(255, 75, 75);
--green: #1cad59;
--yellow: rgb(220, 165, 0);
// Accent colors
--dark-red: #d40e1e;
--red: #f50000;
--kinda-pink: #e40273;
--purple: #462191;
--shady-blue: #324de6;
--nice-blue: #256eff;
--maybe-cyan: #00b0ff;
--teal: #00bcd4;
--mint-green: #16c79a;
--yellowish-green: #66bb6a;
--greenish-yellow: #8bc34a;
--dark-teal: #11698e;
--tangerine: #ff6f00;
--orange: #ff9100;
--redish-orange: #ff3d00;
color: rgba(var(--text-color), 1);
background: rgba(var(--foreground-color), 1);
overflow-y: hidden;
#scroll_to_bottom {
background: rgba(var(--foreground-color), 1);
box-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.2);
}
}
body[data-theme="dark"] {
--accent-color: #6d83ff;
--secondary-color: #d60739;
--text-color: 220, 220, 220;
--foreground-color: 27, 28, 29;
--background-color: 21, 22, 22;
--danger-color: rgb(255, 106, 106);
--green: #00e676;
--yellow: rgb(255, 213, 5);
// Accent colors
--dark-red: #ff5e7e;
--red: #ff6098;
--kinda-pink: #c44ae6;
--purple: #9565f7;
--shady-blue: #7084f5;
--nice-blue: #86afff;
--maybe-cyan: #66cfff;
--teal: #6aeeff;
--mint-green: #4dffd2;
--yellowish-green: #9effa2;
--greenish-yellow: #c7fc8b;
--dark-teal: #51cbff;
--tangerine: #ffac6d;
--orange: #ffbe68;
--redish-orange: #ff8560;
.initial {
box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.16);
}
.message {
color: rgba(var(--text-color), 1);
}
#scroll_to_bottom {
background: linear-gradient(
rgba(var(--text-color), 0.1),
rgba(var(--text-color), 0.1)
),
rgba(var(--foreground-color), 1);
box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
}
}
p,
strong {
font-size: 0.9rem;
max-width: 65ch;
line-height: 1.7;
color: rgba(var(--text-color), 0.9);
}
.warning {
line-height: normal;
padding: 1rem;
background-color: khaki;
border-radius: 0.5rem;
font-weight: 500;
color: rgba(0, 0, 0, 0.7);
}
a {
text-decoration: none;
color: var(--accent-color);
&:focus-visible {
box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset;
}
}
a.button {
padding: 0.4rem 0.6rem;
border-radius: 0.3rem;
font-size: 0.9rem;
font-weight: 500;
color: inherit;
}
button,
.button {
user-select: none;
position: relative;
display: inline-flex;
border: none;
background-color: transparent;
overflow: hidden;
color: inherit;
-webkit-tap-highlight-color: transparent;
align-items: center;
font-size: 0.9rem;
font-weight: 500;
white-space: nowrap;
padding: 0.8rem;
border-radius: 0.3rem;
justify-content: center;
&:focus-visible {
outline: var(--accent-color) solid medium;
}
&:not(:disabled) {
cursor: pointer;
}
}
.button {
background-color: rgba(var(--text-color), 0.1);
&--primary,
&--danger {
color: rgba(var(--background-color), 1) !important;
.icon {
fill: rgba(var(--background-color), 1);
}
}
&--primary {
background-color: var(--accent-color);
}
&--danger {
background-color: var(--danger-color);
}
&--small {
padding: 0.4rem 0.6rem;
}
}
.cta {
text-transform: uppercase;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.05em;
padding: 0.8rem 1rem;
}
.icon {
width: 1.2rem;
height: 1.2rem;
fill: rgba(var(--text-color), 0.8);
flex-shrink: 0;
}
.icon-only {
padding: 0.5rem;
border-radius: 0.3rem;
aspect-ratio: 1/1;
}
button:disabled {
opacity: 0.5;
}
a:any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid;
}
details summary {
display: flex;
user-select: none;
cursor: pointer;
align-items: center;
justify-content: space-between;
color: var(--accent-color);
}
details[open] {
& summary {
margin-bottom: 1rem;
}
& > summary .down-arrow {
transform: rotate(180deg);
}
}
fieldset {
border: none;
}
input {
accent-color: var(--accent-color);
&[type="range"] {
&:active {
cursor: grab;
}
}
}
sm-copy {
font-size: 0.9rem;
}
sm-input,
sm-textarea {
font-size: 0.9rem;
--border-radius: 0.3rem;
--background-color: rgba(var(--foreground-color), 1);
button {
.icon {
fill: var(--accent-color);
}
}
}
sm-button {
--padding: 0.8rem;
&[variant="primary"] {
.icon {
fill: rgba(var(--background-color), 1);
}
}
&[disabled] {
.icon {
fill: rgba(var(--text-color), 0.6);
}
}
&.danger {
--background: var(--danger-color);
color: rgba(var(--background-color), 1);
}
}
sm-spinner {
--size: 1rem;
--stroke-width: 0.1rem;
}
sm-form {
--gap: 1rem;
}
sm-select {
--padding: 0.8rem;
font-size: 0.9rem;
}
sm-option {
font-size: 0.9rem;
}
strip-select {
--gap: 0;
background-color: rgba(var(--text-color), 0.06);
border-radius: 0.3rem;
padding: 0.3rem;
}
strip-option {
font-size: 0.8rem;
--border-radius: 0.2rem;
user-select: none;
}
ul,
ol {
list-style: none;
}
ol {
counter-reset: item;
li {
position: relative;
display: flex;
align-items: flex-start;
counter-increment: item;
&:not(:last-of-type) {
padding-bottom: 1.5rem;
&::after {
content: "";
position: absolute;
width: 0.1rem;
height: calc(100% - 2.2rem);
background: var(--accent-color);
margin-left: 0.7rem;
margin-top: 2rem;
}
}
}
li::before {
content: counter(item);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 0.8rem;
font-weight: 500;
margin-top: 0.15rem;
margin-right: 1rem;
line-height: 1;
width: 1.5rem;
height: 1.5rem;
border-radius: 100%;
flex-shrink: 0;
color: rgba(var(--text-color), 0.8);
background: rgba(var(--text-color), 0.1);
}
}
.overflow-ellipsis {
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.breakable {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.full-bleed {
grid-column: 1/-1;
}
.uppercase {
text-transform: uppercase;
}
.capitalize {
text-transform: capitalize;
}
.sticky {
position: sticky;
}
.top-0 {
top: 0;
}
.flex {
display: flex;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-1 {
flex: 1;
}
.grid {
display: grid;
}
.flow-column {
grid-auto-flow: column;
}
.gap-0-3 {
gap: 0.3rem;
}
.gap-0-5 {
gap: 0.5rem;
}
.gap-1 {
gap: 1rem;
}
.gap-1-5 {
gap: 1.5rem;
}
.gap-2 {
gap: 2rem;
}
.gap-3 {
gap: 3rem;
}
.text-align-right {
text-align: right;
}
.align-start {
align-content: flex-start;
}
.align-center {
align-items: center;
}
.align-end {
align-items: flex-end;
}
.text-center {
text-align: center;
}
.justify-start {
justify-items: start;
}
.justify-center {
justify-content: center;
}
.justify-right {
margin-left: auto;
}
.align-self-center {
align-self: center;
}
.align-self-end {
align-self: end;
}
.justify-self-center {
justify-self: center;
}
.justify-self-start {
justify-self: start;
}
.justify-self-end {
justify-self: end;
}
.flex-direction-column {
flex-direction: column;
}
.space-between {
justify-content: space-between;
}
.w-100 {
width: 100%;
}
.h-100 {
height: 100%;
}
.label {
font-size: 0.8rem;
color: rgba(var(--text-color), 0.8);
font-weight: 500;
margin-bottom: 0.2rem;
}
.button--primary,
.button--danger {
.ripple {
background: radial-gradient(
circle,
rgba(var(--background-color), 0.3) 0%,
rgba(0, 0, 0, 0) 50%
);
}
}
.ripple {
height: 8rem;
width: 8rem;
position: absolute;
border-radius: 50%;
transform: scale(0);
background: radial-gradient(
circle,
rgba(var(--text-color), 0.3) 0%,
rgba(0, 0, 0, 0) 50%
);
pointer-events: none;
}
.interactive {
position: relative;
overflow: hidden;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}
.empty-state {
display: grid;
width: 100%;
padding: 1.5rem 0;
}
.observe-empty-state:empty {
display: none !important;
}
.observe-empty-state:not(:empty) + .empty-state {
display: none !important;
}
.bullet-point {
display: flex;
align-items: center;
justify-content: center;
margin: 0 0.8ch;
&::after {
content: "";
height: 0.4ch;
width: 0.4ch;
border-radius: 0.5em;
background-color: var(--accent-color);
}
}
.margin-right-0-5 {
margin-right: 0.5rem;
}
.margin-left-0-5 {
margin-left: 0.5rem;
}
.margin-left-auto {
margin-left: auto;
}
.icon-button {
padding: 0.6rem;
border-radius: 0.8rem;
background-color: rgba(var(--text-color), 0.1);
height: max-content;
.icon {
fill: var(--accent-color);
}
}
.fab {
position: absolute;
right: 0;
bottom: 0;
margin: 1.5rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
z-index: 2;
border-radius: 0.5rem;
padding: 0.8rem 1rem;
.icon {
margin-right: 0.5rem;
}
}
.page {
height: 100%;
&__header {
display: flex;
justify-content: space-between;
margin-bottom: 1.5rem;
min-height: 8rem;
.grid {
margin-top: auto;
}
h1 {
margin-top: auto;
font-size: 2rem;
}
}
}
.page-layout {
display: grid;
gap: 1.5rem 0;
grid-template-columns: 1.5rem minmax(0, 1fr) 1.5rem;
align-content: flex-start;
& > * {
grid-column: 2/3;
}
}
#confirmation_popup,
#prompt_popup {
flex-direction: column;
h4 {
margin-bottom: 0.5rem;
}
sm-button {
margin: 0;
}
.flex {
padding: 0;
margin-top: 1rem;
sm-button:first-of-type {
margin-right: 0.6rem;
margin-left: auto;
}
}
}
#prompt_message {
margin-bottom: 1.5rem;
}
.popup__header {
display: grid;
gap: 0.5rem;
width: 100%;
padding: 0 1.5rem;
align-items: center;
}
.popup__header__close {
padding: 0.5rem;
margin-left: -0.5rem;
}
.flo-icon {
margin-right: 0.3rem;
height: 1.5rem;
width: 1.5rem;
}
#secondary_pages {
display: flex;
flex-direction: column;
width: 100%;
header {
padding: 1.5rem;
}
.inner-page {
height: 100%;
}
}
.inner-page {
background-color: rgba(var(--foreground-color), 0.5);
}
#sign_in,
#sign_up {
justify-items: center;
align-content: center;
section {
margin-top: -8rem;
width: min(24rem, 100%);
}
sm-form {
margin: 2rem 0;
}
}
#sign_up {
.h2 {
margin-bottom: 0.5rem;
}
.card {
margin: 1.5rem 0;
}
h5 {
color: rgba(var(--text-color), 0.8);
}
}
.card {
display: flex;
flex-direction: column;
margin: 1rem 0;
}
.tip {
font-size: 0.9rem;
color: rgba(var(--text-color), 0.8);
}
sm-button[variant="primary"] {
--foreground-color: 255, 255, 255;
}
.danger {
color: var(--error-color);
}
.logo-section {
display: flex;
position: relative;
align-items: center;
height: max-content;
margin: 0.5rem 0;
h5 {
font-size: 1.1rem !important;
font-weight: 500;
}
.main-logo {
height: 1.4rem;
margin-right: 0.4rem;
fill: rgba(var(--text-color), 1);
stroke: none;
}
img {
width: 2rem;
margin-right: 0.5rem;
}
}
.select-file {
input[type="file"] {
display: none;
}
}
#landing {
display: grid;
border-radius: 0.6rem;
width: 100%;
height: 100%;
padding: 0 1.5rem;
align-items: center;
.logo-section {
padding: 1.5rem;
display: flex;
}
.title-font {
line-height: 1.2;
font-weight: 700;
font-size: 2.5rem;
}
.left {
display: grid;
flex-direction: column;
padding-bottom: 1.5rem;
z-index: 1;
h4 {
color: var(--accent-color);
margin-bottom: 0.5rem;
font-weight: 500;
}
sm-button {
margin: 1.5rem 0 2rem 0;
width: max-content;
}
h3 {
margin-bottom: 1rem;
font-weight: 500;
}
p {
margin-top: 1rem;
font-size: 1.1rem;
color: rgba(var(--text-color), 0.8);
}
.flex {
sm-button:first-of-type {
margin-right: 1rem;
}
}
}
}
#landing_page {
grid-template-rows: auto 1fr;
overflow-y: auto;
background: rgba(var(--foreground-color), 1);
}
.logo-section {
padding: 1.5rem;
}
#landing_illustration {
position: relative;
width: 100%;
}
@keyframes slide-down {
from {
transform: translateY(-1rem);
}
to {
transform: none;
}
}
#loading_page {
height: 100%;
display: grid;
place-content: center;
justify-items: center;
}
.page__loader {
z-index: 1;
transform-origin: bottom;
height: 6rem;
width: 6rem;
animation: bounce 0.5s infinite alternate ease-in;
}
.shadow {
margin-top: -1rem;
width: 5rem;
height: 2rem;
background: rgba(var(--text-color), 0.1);
border-radius: 50%;
animation: scale 0.5s infinite alternate ease-in;
margin-left: 1rem;
}
.page__tag-line {
margin-top: 2rem;
}
@keyframes bounce {
0% {
transform: scaleY(1) translateY(-4rem);
}
90% {
transform: scaleY(1) translateY(0);
}
100% {
transform: scaleY(0.8);
}
}
@keyframes scale {
0% {
transform: scale(0.5);
}
90% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
#background_overlay,
#background_image {
position: fixed;
height: 100%;
width: 100%;
}
#background_overlay {
background-color: red;
z-index: -1;
background-color: rgba(var(--foreground-color), var(--opacity, 0.6));
transition: background-color 0.3s;
}
#background_image {
z-index: -2;
object-fit: cover;
filter: blur(var(--blur, 1rem));
transform: scale(calc(1 + (var(--scale, 1.1) / 10)));
}
#main_page {
display: grid;
grid-template-columns: minmax(0, 1fr);
grid-template-rows: 1fr auto;
}
.initial {
position: relative;
justify-content: center;
font-size: 1.2rem;
font-weight: 500;
width: 2.8rem;
height: 2.8rem;
aspect-ratio: 1/1;
color: rgba(var(--foreground-color), 1);
box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.06);
border-radius: 2rem;
text-transform: uppercase;
user-select: none;
background-color: var(--contact-color, --accent-color);
}
.group-icon {
height: 1.6rem;
width: 1.6rem;
fill: rgba(var(--foreground-color), 1);
}
.contact {
position: relative;
display: grid;
gap: 0 1rem;
padding: 0.8rem 1.5rem;
align-items: center;
flex-shrink: 0;
user-select: none;
overflow: hidden;
&:not(.chat) {
grid-template-columns: auto 1fr;
grid-template-areas: "dp .";
}
&.chat,
&.group {
grid-template-columns: auto 1fr auto;
grid-template-areas:
"dp . time"
"dp . menu";
}
&.admin {
grid-template-columns: auto 1fr auto;
}
&.selected {
background-color: rgba(var(--text-color), 0.06);
}
.initial {
grid-area: dp;
}
.name,
.last-message {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
color: rgba(var(--text-color), 0.8);
}
.name {
width: 100%;
font-size: 1em;
font-weight: 500;
}
.last-message {
font-weight: 400;
font-size: 0.9em;
}
.menu {
grid-area: menu;
justify-self: flex-end;
padding: 0.2rem;
fill: rgba(var(--text-color), 1);
}
.time {
color: rgba(var(--text-color), 0.7);
grid-area: time;
font-size: 0.8rem;
}
}
.selectable-contact {
user-select: none;
padding: 0.5rem 0;
gap: 1rem;
input {
margin-left: auto;
}
}
.group-member {
display: flex;
align-items: center;
padding: 0.5rem 0;
.initial {
margin-right: 1rem;
}
.admin-tag {
margin-left: auto;
padding: 0.1rem 0.6rem;
font-size: 0.8rem;
border-radius: 3rem;
background-color: rgba(var(--text-color), 0.1);
}
}
#selected_contacts_container {
display: flex;
overflow: auto hidden;
&:not(:empty) {
padding: 0.5rem 0;
margin: 0.5rem 0;
border-bottom: solid thin rgba(var(--text-color), 0.1);
}
.contact-preview {
display: flex;
flex-shrink: 0;
align-items: center;
cursor: pointer;
margin-right: 0.3rem;
background: rgba(var(--text-color), 0.1);
padding-left: 0.2rem;
border-radius: 2rem;
transform-origin: left;
overflow: hidden;
.initial {
width: 1.6rem;
height: 1.6rem;
font-size: 0.9rem;
}
.name {
font-size: 0.9rem;
color: rgba(var(--text-color), 0.8);
margin-left: 0.5rem;
}
}
}
#contact_details_popup {
.popup-section {
margin: 1.5rem 0;
}
h5 {
font-weight: 500;
opacity: 0.8;
}
.group-icon {
padding: 0.2rem;
height: 3rem;
width: 3rem;
}
}
#contact_initial {
height: 4.6rem;
width: 4.6rem;
font-size: 2.4rem;
border-radius: 4rem;
margin-top: 3rem;
margin-bottom: 0.5rem;
background-color: var(--contact-color, --accent-color);
}
#contact_name {
margin: 0.5rem 0;
&::part(text) {
font-size: 1.2rem;
font-weight: 500;
}
}
#warn_no_encryption,
.date-card,
.group-event-card {
padding: 0.4rem 0.6rem;
font-weight: 500;
font-size: 0.8rem;
background-color: rgba(var(--text-color), 0.04);
border-radius: 0.3rem;
color: rgba(var(--text-color), 0.8);
margin: 1rem 0;
justify-self: center;
align-self: center;
text-align: center;
}
.group-event-card {
font-size: 0.8rem;
font-weight: 400;
}
#warn_no_encryption {
background: rgb(255, 253, 141);
color: #111;
}
.contact .initial::after,
.mail-card .initial::after {
content: "";
position: absolute;
bottom: -0.1rem;
right: -0.1rem;
height: 1rem;
width: 1rem;
background: var(--accent-color);
border-radius: 100%;
border: solid rgba(var(--foreground-color), 1) 1px;
transform: scale(0);
transition: transform 0.3s;
}
.contact.unread .initial::after,
.mail-card.unread .initial::after {
transform: scale(1);
}
.mail-card.unread,
.contact.unread {
.time,
.date {
color: var(--accent-color);
}
h4 {
color: rgba(var(--text-color), 1);
}
h4,
h5,
p {
font-weight: 700;
}
}
.mail-card {
position: relative;
display: grid;
gap: 0 1rem;
padding: 0.8rem 1.5rem;
align-items: center;
flex-shrink: 0;
user-select: none;
grid-template-columns: auto 1fr auto;
grid-template-areas:
"dp sender date"
"dp subject subject"
"dp desc desc";
.initial {
grid-area: dp;
align-self: flex-start;
height: 2rem;
width: 2rem;
font-size: 1rem;
}
.sender {
width: 100%;
font-size: 0.8rem;
font-weight: 500;
color: rgba(var(--text-color), 0.8);
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.subject {
grid-area: subject;
font-size: 1em;
margin-top: 0.3rem;
font-weight: 500;
}
.description {
grid-area: desc;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
font-size: 0.9em;
margin-top: 0.2rem;
color: rgba(var(--text-color), 0.8);
}
}
.date {
grid-area: date;
margin-left: auto;
white-space: nowrap;
font-size: 0.8rem;
color: rgba(var(--text-color), 0.8);
}
@keyframes slide {
from {
opacity: 0;
transform: translateX(-1rem);
}
to {
opacity: 1;
transform: none;
}
}
#mail_container {
width: 100%;
}
.mail {
position: relative;
&:not(:first-of-type) {
margin-top: 2rem;
padding: 1rem;
background-color: rgba(var(--text-color), 0.03);
padding-bottom: 2rem;
.mail-header {
padding-top: 0;
}
}
&:not(:first-of-type)::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 0.2rem;
height: 100%;
background: rgba(var(--text-color), 0.2);
}
.mail-header {
align-self: start;
margin-bottom: 1rem;
padding: 1.5rem;
gap: 1rem;
}
.initial {
background-color: var(--contact-color, --accent-color);
margin: 0;
height: 2rem;
width: 2rem;
}
.sender-name {
font-weight: 500;
margin-bottom: 0.5rem;
}
.flo-id {
font-weight: 400;
max-width: 90%;
}
.back {
margin-left: -0.5rem;
}
.mail-subject,
.mail-content {
padding: 0 1.5rem;
overflow-wrap: break-word;
word-wrap: break-word;
}
.mail-subject {
margin-bottom: 0.4em;
}
.mail-content {
height: max-content;
max-width: 60ch;
white-space: pre-wrap;
}
}
.logo-section {
display: grid;
grid-template-columns: auto 1fr;
}
#main_navbar {
display: flex;
background: rgba(var(--text-color), 0.03);
&.hide-away {
position: absolute;
}
ul {
display: flex;
height: 100%;
width: 100%;
li {
width: 100%;
}
}
}
.nav-item {
position: relative;
display: flex;
flex: 1;
width: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0.5rem 0.3rem;
color: var(--text-color);
font-size: 0.8rem;
border-radius: 0.3rem;
font-weight: 500;
.icon {
transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
&__title {
margin-top: 0.3rem;
transition: opacity 0.2s,
transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
&--active {
color: var(--accent-color);
.icon {
fill: var(--accent-color);
transform: translateY(50%);
}
.nav-item__title {
transform: translateY(100%);
opacity: 0;
}
}
&__indicator {
position: absolute;
bottom: 0;
width: 2rem;
height: 0.3rem;
background: var(--accent-color);
border-radius: 1rem 1rem 0 0;
z-index: 1;
}
&:last-of-type {
margin-top: auto;
}
&.badge::after {
right: 0;
top: 0;
position: absolute;
content: attr(data-notifications);
display: flex;
justify-content: center;
align-items: center;
padding: 0.4rem;
line-height: 0;
height: calc(1em + 0.4rem);
background: #00c853;
color: rgba(var(--foreground-color), 1);
border-radius: 2rem;
transition: transform 0.3s;
}
&.badge.active::after,
&.badge[data-notifications="0"]::after,
&.badge[data-notifications=""]::after {
transform: scale(0);
}
}
#auto_complete_contact {
position: relative;
justify-content: flex-start;
padding-bottom: 0;
}
#mail_contact_list {
max-height: 40vh;
overflow-y: auto;
position: absolute;
top: 100%;
background: rgba(var(--foreground-color), 1);
z-index: 1;
border-radius: 0.4rem;
box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1),
0 0.2rem 0.5rem rgba(0, 0, 0, 0.16);
width: 100%;
.contact {
grid-template-columns: auto 1fr;
grid-template-areas: "dp ." "dp .";
}
sm-menu {
display: none;
}
}
#contacts {
position: relative;
overflow-x: hidden;
.scrolling-wrapper {
height: 100%;
flex: 1;
overflow-y: auto;
.empty-state {
padding: 1.5rem;
text-align: center;
}
}
}
#contacts_container {
.contact {
padding: 0.5rem 0;
}
}
#group_creation_panel {
.group-icon {
background-color: var(--accent-color);
justify-self: center;
height: 8rem;
width: 8rem;
margin-bottom: 1rem;
padding: 2rem;
border-radius: 50%;
font-size: 4rem;
}
}
#contacts,
#mails {
position: relative;
grid-template-rows: max-content 1fr;
}
#contacts,
#mails,
#settings {
height: 100%;
overflow-y: hidden;
.header {
padding: 1rem 1.5rem;
position: relative;
gap: 0.5rem;
min-height: 4rem;
.expanding-search {
position: absolute;
width: 100%;
padding: 0.7rem 1.5rem;
background: rgba(var(--foreground-color), 1);
}
sm-input {
width: 100%;
}
h4 {
text-transform: capitalize;
font-weight: 500;
}
.flex {
h4 {
flex: 1;
}
sm-menu {
margin-right: -0.7rem;
}
}
sm-button {
margin: 0;
.icon {
height: 0.9rem;
width: 0.9rem;
align-self: center;
stroke-width: 8;
margin-left: 0;
margin-right: 0.5rem;
}
}
}
}
#chat_search_field {
.icon-only {
margin-left: -0.5rem;
margin-right: 0.5rem;
}
}
#chat_page,
#mail_page,
#settings {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
#chat_page {
overflow: hidden;
}
#group_members_list {
margin-top: 0.5rem;
.contact {
padding: 0.5rem 0;
}
}
#chat_view,
#mail {
background-color: rgba(var(--foreground-color), 0.3);
}
#chat_view {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
overflow-y: auto;
}
.message {
position: relative;
display: flex;
flex-wrap: wrap;
width: auto;
font-size: 0.92rem;
max-width: max-content;
margin-bottom: 0.2rem;
margin-top: 0.8rem;
padding: 0.6em 1em;
transition: opacity 0.3s,
transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
.sender-name {
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 0.3rem;
}
.message-body {
display: flex;
align-items: center;
flex-wrap: wrap;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-all;
word-break: break-word;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
white-space: pre-wrap;
line-height: 1.5;
a {
color: inherit;
}
.text-emoji {
align-self: center;
font-size: 1.4em;
letter-spacing: 0;
}
}
.time {
white-space: nowrap;
font-size: 0.8em;
opacity: 0.8;
justify-self: flex-end;
padding-left: 1rem;
align-self: flex-end;
margin-top: 0.2rem;
margin-left: auto;
}
}
.sent {
margin-left: auto;
background: var(--accent-color);
border-radius: 0.8rem 0 0.8rem 0.8rem;
& > * {
color: rgba(var(--background-color), 1);
}
&::after {
content: "";
position: absolute;
left: 100%;
top: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0.5em 0.3em 0 0;
border-color: var(--accent-color) transparent transparent transparent;
}
}
.received {
margin-right: auto;
background: rgba(var(--text-color), 0.1);
border-radius: 0 0.8rem 0.8rem 0.8rem;
&::after {
content: "";
position: absolute;
left: -0.5em;
top: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0.5em 0.5em 0;
border-color: transparent rgba(var(--text-color), 0.1) transparent
transparent;
}
}
.sent + .sent,
.received + .received {
margin-top: 0;
}
.sent + .sent::after,
.received + .received::after {
display: none;
}
.sent + .sent,
.received + .received {
border-radius: 0.8rem;
}
.distinct-sender {
display: grid;
border-radius: 0 0.8rem 0.8rem 0.8rem !important;
margin-top: 0.8rem !important;
&::after {
display: flex !important;
content: "";
position: absolute;
left: -0.5em;
top: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0.5em 0.5em 0;
border-color: transparent rgba(var(--text-color), 0.1) transparent
transparent;
}
}
.unconfirmed {
opacity: 0.7;
transform-origin: left;
animation: pop 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes pop {
0% {
transform: rotate(5deg) translate(-0.5rem, 1rem);
}
100% {
transform: rotate(0) translate(0, 0);
}
}
#chat_header {
padding: 0.5rem 1rem;
align-content: center;
grid-template-columns: minmax(0, 1fr);
.flex {
height: 100%;
}
.back-button {
padding: 0.5rem;
margin-left: -0.5rem;
}
#chat_details {
background-color: rgba(var(--text-color), 0.06);
border-radius: 2rem;
justify-self: center;
padding: 0.3rem;
}
.initial {
cursor: pointer;
height: 1.8rem;
width: 1.8rem;
flex-shrink: 0;
font-size: 1rem;
}
#receiver_name {
font-weight: 500;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
#scroll_to_bottom {
position: absolute;
display: flex;
right: 0;
bottom: 4rem;
border-radius: 4rem;
z-index: 1;
aspect-ratio: 1/1;
margin: 1.5rem;
cursor: pointer;
transform: scale(0);
transition: transform 0.3s;
&.new-message::after {
position: absolute;
content: "";
top: 0;
right: 0;
z-index: 2;
padding: 0.5rem;
border-radius: 50%;
background: #00e676;
}
.icon {
width: 2.6rem;
height: 2.6rem;
padding: 0.9rem;
stroke-width: 8;
}
}
#chat_footer {
.flex {
align-items: flex-end;
padding: 0.5rem 1rem 0.5rem 0.5rem;
}
sm-textarea {
--padding-right: 3rem;
}
}
#emoji_toggle {
align-self: center;
padding: 0.6rem;
margin-right: 0.5rem;
width: 2.6rem;
height: 2.6rem;
border-radius: 2rem;
cursor: pointer;
path {
fill: rgba(var(--text-color), 0.5);
}
&.active path {
fill: var(--accent-color);
}
}
#send_message_button {
align-self: center;
padding: 0.5rem 0.8rem;
margin-left: 0.5rem;
opacity: 0.5;
font-weight: 500;
&:not(:disabled) {
opacity: 1;
color: var(--accent-color);
}
}
#type_message {
margin: 0;
--border-radius: 0.5rem;
--background: rgba(var(--text-color), 0.1);
}
#messages_container {
flex: 1;
padding: 0 1rem;
}
#emoji_picker {
--background: rgba(var(--text-color), 0.06);
--border-size: 0;
--input-border-color: none;
--input-padding: 0.4rem 1rem;
--outline-color: var(--accent-color);
--input-font-color: rgba(var(--text-color), 1);
--input-placeholder-color: rgba(var(--text-color), 0.6);
--indicator-color: var(--accent-color);
--button-hover-background: rgba(var(--text-color), 0.2);
user-select: none;
width: 100%;
max-height: 40vh;
}
.emoji {
font-size: 1.6rem;
cursor: pointer;
padding: 0.4rem;
border-radius: 0.6rem;
user-select: none;
text-align: center;
}
#new_conversation,
#no_mails {
height: 100%;
justify-content: center;
text-align: center;
padding: 1.5rem;
p {
margin-top: 0.8rem;
}
}
#no_mails {
.new-conversation {
height: 7rem;
margin-bottom: 1rem;
}
}
.new-conversation {
height: 8rem;
width: 8rem;
align-self: center;
stroke-width: 16;
stroke: rgba(var(--text-color), 0.4);
}
#messages_container,
#chats_list,
#inbox_mail_container,
#sent_mail_container,
#mail {
width: 100%;
flex-direction: column;
height: 100%;
overflow-y: auto;
}
.observe-empty-state:empty {
display: none;
}
.observe-empty-state:not(:empty) ~ .empty-state {
display: none;
}
#chats_list {
padding-bottom: 6rem;
}
.mail-container {
height: 100%;
flex-direction: column;
overflow-y: auto;
}
#inbox_mail_container,
#sent_mail_container {
gap: 0.2rem;
padding-bottom: 6rem;
}
.has-bg-image {
.received,
.group-event-card,
.date-card {
background: rgba(var(--foreground-color), 1);
}
.received::after {
border-color: transparent rgba(var(--foreground-color), 0.6) transparent
transparent;
}
#emoji_picker {
--background: rgba(var(--foreground-color), 0.6);
}
#emoji_toggle {
path {
fill: rgba(var(--text-color), 0.8);
}
}
sm-textarea {
--background: rgba(var(--foreground-color), 0.6);
}
}
#mail {
height: 100vh;
align-items: flex-start;
& > .flex {
padding: 0 1.5rem;
margin-top: 2rem;
sm-button:first-of-type {
margin-right: 0.5rem;
}
}
}
#compose_mail_popup {
}
.sidebar-item {
display: flex;
align-items: center;
padding: 1rem 1.5rem;
text-transform: capitalize;
font-weight: 500;
opacity: 0.9;
color: inherit;
.icon {
margin-right: 1em;
width: 1em;
}
}
.back {
padding: 0.7rem;
height: 2.4rem;
width: 2.4rem;
margin-left: -0.5rem;
cursor: pointer;
stroke-width: 8;
opacity: 0.8;
-webkit-tap-highlight-color: transparent;
&:hover {
opacity: 1;
}
}
#settings {
#settings_sidebar header {
padding: 1rem 1.5rem;
}
.flex sm-button {
margin: 0;
margin-left: 1rem;
}
sm-switch {
padding: 1rem 1.5rem;
display: flex;
margin-bottom: 1rem;
width: min(60ch, 100%);
.flex {
margin-right: 1rem;
}
h4 {
margin-bottom: 0.5rem;
}
}
sm-button {
width: 100%;
}
#settings_title {
text-transform: capitalize;
}
#settings_sidebar {
height: 100%;
}
#settings_panel {
overflow-y: auto;
height: 100%;
}
section {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding: 1rem 1.5rem;
width: min(60ch, 100%);
.button {
align-self: flex-start;
}
}
#sign_out::part(button) {
color: var(--error-color);
}
color-grid {
margin: 0.5rem 0 1.5rem 0;
width: min(60ch, 100%);
}
#chat_preview {
margin-top: 1rem;
padding: 1rem;
border-radius: 0.5rem;
background-color: rgba(var(--text-color), 0.06);
}
#bg_preview_container {
padding: 1rem 0;
gap: 0.5rem;
flex-wrap: wrap;
}
.bg-preview {
position: relative;
display: grid;
place-items: center;
height: 8rem;
width: 8rem;
cursor: pointer;
border-radius: 1rem;
overflow: hidden;
background: rgba(var(--text-color), 0.1);
&--selected::after {
content: "";
position: absolute;
height: 100%;
width: 100%;
border-radius: inherit;
box-shadow: 0 0 0 0.5rem var(--accent-color) inset;
}
input {
display: none;
}
}
.bg-preview__image {
object-fit: cover;
height: 100%;
width: 100%;
}
}
.option {
width: 100%;
justify-content: flex-start;
padding: 0.8rem 0;
color: var(--accent-color);
.icon {
fill: var(--accent-color);
margin-right: 1rem;
}
&--danger {
color: var(--danger-color);
.icon {
fill: var(--danger-color);
}
}
}
@media screen and (max-width: 640px) {
sm-popup {
--border-radius: 1rem 1rem 0 0;
}
#landing {
grid-template-areas: "illustration" ".";
align-items: flex-start;
.title-font {
font-size: 2rem;
font-weight: 500;
}
sm-button {
width: 100%;
display: flex;
width: 100% !important;
}
}
#landing_illustration {
grid-area: illustration;
}
.frame,
#sign_in {
form {
height: 100%;
}
.h2 {
margin-top: 3rem;
}
sm-button[variant="primary"] {
margin-top: auto;
}
}
#main_navbar {
&.hide-away {
bottom: 0;
left: 0;
right: 0;
}
}
#chats_list,
#contact_container {
gap: 0.2rem;
}
#chat_view {
.message {
width: auto;
max-width: 90%;
}
}
#chat_header {
grid-template-columns: auto minmax(0, 1fr);
#chat_details {
width: calc(100% - 2rem);
margin-left: -1.7rem;
}
}
#settings {
overflow-x: hidden;
#settings_header {
position: sticky;
top: 0;
z-index: 1;
padding: 1rem 1.5rem;
margin-bottom: 0.5rem;
background: linear-gradient(
rgba(var(--background-color), 0.8),
rgba(var(--background-color), 0)
);
backdrop-filter: blur(0.5rem);
}
}
.hide-on-mobile {
display: none !important;
}
}
@media screen and (min-width: 40rem) {
.hide-on-desktop {
display: none !important;
}
.page {
padding-bottom: 0;
}
.popup__header {
grid-column: 1/-1;
padding: 1rem 1.5rem 0 1.5rem;
}
.logo-section {
padding: 2rem 3rem 0 3rem;
margin: 0.5rem 0;
}
sm-popup {
--width: 24rem;
--min-width: 24rem;
--border-radius: 0.5rem;
}
#landing {
align-items: center;
gap: 4vw;
grid-template-columns: 1fr 1fr;
padding: 0 4vw;
}
#sign_in {
width: 24rem;
}
#main_page {
grid-template-columns: min-content 1fr;
grid-template-rows: 1fr;
grid-template-areas: "nav .";
overflow: hidden;
box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05),
0 1rem 3rem rgba(0, 0, 0, 0.2);
}
#main_navbar {
grid-area: nav;
border-top: none;
flex-direction: column;
background-color: rgba(var(--foreground-color), 0.3);
ul {
flex-direction: column;
gap: 0.5rem;
padding: 0.3rem;
li:last-of-type {
margin-top: auto;
}
}
}
.nav-item {
aspect-ratio: 1/1;
&__indicator {
width: 0.25rem;
height: 50%;
left: 0;
border-radius: 0 1rem 1rem 0;
bottom: auto;
}
}
#add_contact_popup {
--min-width: 24rem;
}
#compose_mail_popup,
#reply_mail_popup {
--min-width: 36rem;
}
#emoji_picker {
max-height: 18rem;
}
#chat_view {
.message {
width: auto;
align-self: flex-start;
max-width: 55ch;
}
}
#chat_page,
#mail_page {
display: grid;
grid-template-columns: 19rem 1fr;
}
#settings {
display: grid;
grid-template-columns: 14rem 1fr;
sm-button {
width: max-content;
}
.active {
background: rgba(var(--text-color), 0.1);
}
.panel > *:first-of-type {
margin-top: 0.5rem;
}
}
.contact.active,
.mail-card.active {
background: rgba(var(--text-color), 0.06);
}
.card {
display: inline-flex;
width: auto;
}
#contact_details_popup {
&.is-group {
--width: 52rem;
#contact_details_section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
& > :first-child {
padding-right: 1.5rem;
border-right: thin solid rgba(var(--text-color), 0.3);
}
}
}
}
}
@media only screen and (max-width: 1280px) {
.hide-on-medium {
display: none !important;
}
}
@media only screen and (min-width: 1080px) {
#chat_view {
#messages_container {
padding: 1rem 4rem;
padding-top: 0;
}
}
}
@media only screen and (min-width: 1280px) {
#landing {
gap: 4vw;
padding: 0 8vw;
.title-font {
font-size: 3rem;
}
}
#emoji_picker {
--num-columns: 16;
}
.contact.active,
.mail-card.active {
background: rgba(var(--text-color), 0.06);
}
.card {
display: inline-flex;
width: auto;
}
}
@media (hover: hover) {
::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
::-webkit-scrollbar-thumb {
background: rgba(var(--text-color), 0.3);
border-radius: 1rem;
&:hover {
background: rgba(var(--text-color), 0.5);
}
}
.interactive:hover {
background-color: rgba(var(--text-color), 0.06);
}
.emoji:hover {
cursor: pointer;
background: rgba(var(--text-color), 0.06);
}
.contact {
.menu {
opacity: 0;
transition: opacity 0.3s;
}
}
.contact:hover {
.menu {
opacity: 1;
}
}
}
@media (hover: none) {
.contact-preview,
.contact {
-webkit-tap-highlight-color: transparent;
}
.contact .menu {
display: none;
}
}
@supports (overflow: overlay) {
body {
overflow: overlay;
}
}
.hide {
display: none !important;
}