background color set

master
jocavdh 5 years ago
parent 0865533a9c
commit 14013cdb23

@ -23,7 +23,7 @@ Thank you!
<div class="messages"></div> <div class="messages"></div>
<div id="edge"></div> <div id="edge"></div>
<form class="actions"> <form class="actions">
<input type="text" placeholder="press 'Enter' to send..."> <input type="text" placeholder="Hi Saint, please tell about...">
<button type="submit">Send</button> <button type="submit">Send</button>
</form> </form>
</div> </div>

@ -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%;
@ -130,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%
}
} }
Loading…
Cancel
Save