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%;
|
2021-07-24 15:17:41 +00:00
|
|
|
background-color: darkgrey;
|
2021-07-23 14:30:43 +00:00
|
|
|
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;
|
2021-07-24 14:10:41 +00:00
|
|
|
margin-top: 1%;
|
2021-07-23 14:30:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-07-23 19:41:55 +00:00
|
|
|
button {
|
|
|
|
padding: 1%;
|
|
|
|
}
|
|
|
|
|
2021-07-23 14:30:43 +00:00
|
|
|
#loggeduser {
|
|
|
|
font-size: 30px;
|
2021-07-23 06:51:26 +00:00
|
|
|
}
|
|
|
|
|
2021-07-24 15:17:41 +00:00
|
|
|
#outerchatbox {
|
2021-07-22 20:09:02 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-07-24 15:17:41 +00:00
|
|
|
#chatbox {
|
|
|
|
background-color: rgb(60, 60, 60);
|
2021-07-22 20:09:02 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 90%;
|
|
|
|
overflow-y: scroll;
|
2021-07-23 19:41:55 +00:00
|
|
|
overflow-x: hidden;
|
2021-07-22 20:09:02 +00:00
|
|
|
text-align: left;
|
2021-07-23 14:30:43 +00:00
|
|
|
color: white;
|
2021-07-24 14:10:41 +00:00
|
|
|
overflow-wrap: break-word;
|
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%;
|
|
|
|
}
|