|
|
@ -27,7 +27,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
.chat {
|
|
|
|
.chat {
|
|
|
|
width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 90%;
|
|
|
|
height: 100%;
|
|
|
|
max-height: calc(100%-2.5rem);
|
|
|
|
max-height: calc(100%-2.5rem);
|
|
|
|
position: fixed;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
left: 0;
|
|
|
@ -53,7 +53,7 @@
|
|
|
|
width: 79.89%;
|
|
|
|
width: 79.89%;
|
|
|
|
outline: 0;
|
|
|
|
outline: 0;
|
|
|
|
border: 0;
|
|
|
|
border: 0;
|
|
|
|
background-color: #EFEBE7;
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 0 1%;
|
|
|
|
padding: 0 1%;
|
|
|
|
text-indent: 10px;
|
|
|
|
text-indent: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -104,6 +104,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
.messages .self {
|
|
|
|
.messages .self {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
color: black;
|
|
|
|
background: #DDD;
|
|
|
|
background: #DDD;
|
|
|
|
width: max-content;
|
|
|
|
width: max-content;
|
|
|
|
min-width: 30%;
|
|
|
|
min-width: 30%;
|
|
|
@ -115,8 +116,7 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat {
|
|
|
|
.chat {
|
|
|
|
margin-top: 10%;
|
|
|
|
height: calc(100% - 60px);
|
|
|
|
height: calc(90% - 60px);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.messages div {
|
|
|
|
.messages div {
|
|
|
@ -131,4 +131,50 @@
|
|
|
|
text-indent: 10px;
|
|
|
|
text-indent: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
|
|
|
width: 100wh;
|
|
|
|
|
|
|
|
height: 90vh;
|
|
|
|
|
|
|
|
background: linear-gradient(-45deg, #ffebd1, #e5eaf9, #fff);
|
|
|
|
|
|
|
|
background-size: 400% 400%;
|
|
|
|
|
|
|
|
-webkit-animation: Gradient 30s ease infinite;
|
|
|
|
|
|
|
|
-moz-animation: Gradient 30s ease infinite;
|
|
|
|
|
|
|
|
animation: Gradient 30s ease infinite;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes Gradient {
|
|
|
|
|
|
|
|
0% {
|
|
|
|
|
|
|
|
background-position: 0% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
|
|
|
background-position: 100% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
|
|
|
background-position: 0% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@-moz-keyframes Gradient {
|
|
|
|
|
|
|
|
0% {
|
|
|
|
|
|
|
|
background-position: 0% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
|
|
|
background-position: 100% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
|
|
|
background-position: 0% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes Gradient {
|
|
|
|
|
|
|
|
0% {
|
|
|
|
|
|
|
|
background-position: 0% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
|
|
|
background-position: 100% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
|
|
|
background-position: 0% 50%
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|