lilachat-frontend/css/chat.css

66 lines
1.1 KiB
CSS
Raw Normal View History

2021-07-22 20:09:02 +00:00
html {
background: #F7A8B8;
text-align: center;
2021-07-26 22:02:20 +00:00
font-family: "Linotte", "Lucida Console", monospace;
2021-07-22 20:09:02 +00:00
}
2021-07-26 22:02:20 +00:00
@font-face {
font-family: Linotte;
2021-07-26 22:23:13 +00:00
src: url(../assets/LinotteRegular.otf);
2021-07-26 22:02:20 +00:00
}
2021-07-22 20:09:02 +00:00
form {
2021-07-23 14:30:43 +00:00
width: 100%;
overflow:hidden;
2021-07-22 20:09:02 +00:00
}
input {
2021-07-24 19:58:53 +00:00
margin-top: 1%;
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-25 20:10:09 +00:00
background-color: rgb(255, 199, 207);
2021-07-22 20:09:02 +00:00
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-24 18:27:21 +00:00
padding-top: 2%
2021-07-22 20:09:02 +00:00
}