mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
109 lines
1.6 KiB
CSS
109 lines
1.6 KiB
CSS
.chat {
|
|
margin: 1% 3.2% 0 0;
|
|
}
|
|
|
|
.chat__content {
|
|
width: 30%;
|
|
}
|
|
|
|
.chat__container--title {
|
|
display: flex;
|
|
user-select: none;
|
|
}
|
|
|
|
.chat__title {
|
|
margin: 16% 0 0 23%;
|
|
}
|
|
|
|
.chat__container--title h2 {
|
|
color: #FFF;
|
|
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
font-family: Montserrat Alternates;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.content p {
|
|
width: 80%;
|
|
word-wrap: break-word;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.chat__content--users {
|
|
height: 70%;
|
|
}
|
|
|
|
.card__user {
|
|
margin: 8.8% 7.4% 0px 5%;
|
|
display: flex;
|
|
}
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
transition: opacity 0.5s, transform 0.5s;
|
|
}
|
|
.fade-enter, .fade-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
|
|
.user__icon {
|
|
display: flex;
|
|
}
|
|
|
|
.user__icon img {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.content {
|
|
margin-left: 4%;
|
|
color: #fff;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
font-family: Montserrat;
|
|
}
|
|
|
|
.content p {
|
|
margin-top: 2%;
|
|
}
|
|
|
|
.write {
|
|
position: absolute;
|
|
bottom: 0;
|
|
margin: 24% 87% 6% 6%;
|
|
user-select: none;
|
|
width: 50%;
|
|
}
|
|
|
|
.write__content {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.write__content input {
|
|
padding: 14px 25% 14px 12px;
|
|
border-radius: 13px;
|
|
background: #22252F;
|
|
color: #A9A99D;
|
|
border: none;
|
|
}
|
|
|
|
.write__content input::placeholder {
|
|
color: #A9A99D;
|
|
font-weight: 800;
|
|
font-family: Montserrat;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.write__content button {
|
|
padding: 8px 9px;
|
|
margin-left: -15%;
|
|
border-radius: 6px;
|
|
background: #3D3F48;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.write__content button:disabled {
|
|
cursor: not-allowed;
|
|
} |