lilachat-frontend/chat.css

57 lines
929 B
CSS
Raw Normal View History

2021-07-22 20:09:02 +00:00
html {
background: #F7A8B8;
text-align: center;
font-family: "Lucida Console", "Courier New", monospace;
}
form {
2021-07-23 14:30:43 +00:00
width: 100%;
overflow:hidden;
2021-07-22 20:09:02 +00:00
}
input {
2021-07-23 14:30:43 +00:00
padding: 2%;
width: 100%;
background-color: #55CDFC;
border-style: none;
border-bottom-style: solid;
border-bottom-color: black;
border-bottom-width: 1px;
font-family: "Lucida Console", "Courier New", monospace;
2021-07-22 20:09:02 +00:00
}
2021-07-23 06:51:26 +00:00
label {
2021-07-23 14:30:43 +00:00
display: block;
}
#loggeduser {
font-size: 30px;
2021-07-23 06:51:26 +00:00
}
2021-07-22 20:09:02 +00:00
#chatbox {
background-color: white;
padding: 1rem;
box-shadow: 10px 10px 10px black;
2021-07-23 14:30:43 +00:00
width: 30rem;
2021-07-22 20:09:02 +00:00
height: 40rem;
display: inline-flex;
flex-direction: column;
}
#innerchatbox {
2021-07-23 14:30:43 +00:00
background-color: rgba(60, 60, 60, .85);
2021-07-22 20:09:02 +00:00
width: 100%;
height: 90%;
overflow-y: scroll;
text-align: left;
2021-07-23 14:30:43 +00:00
color: white;
2021-07-22 20:09:02 +00:00
}
#loggeduser {
2021-07-23 14:30:43 +00:00
padding-top: 1.5%
2021-07-22 20:09:02 +00:00
}
2021-07-23 14:30:43 +00:00
#errormessage {
2021-07-22 20:09:02 +00:00
padding-top: 2.5%;
}