Files
v2-webchat-client/assets/css/style.css
usernames122 3ff3a89f8e first commit
2025-08-07 23:58:45 +02:00

50 lines
659 B
CSS

header {
display: flex;
flex-direction: row;
justify-content: space-between;
}
#username {
font-weight: 500;
}
.chatbox{
height: 88vh;
width:100%;
background-color: black;
overflow-y: scroll;
overflow-x: hidden;
font-family: 'Consolas', 'Arial', sans-serif;
color: white;
}
.container {
background-color: black;
}
.chattext {
color: white;
}
.consolas {
font-family: 'Consolas', 'Arial', sans-serif;
}
body {
overflow: hidden;
}
.chatstuff {
display: flex;
background-color: rgb(50,50,50);
}
.chatstuff button {
align-self: flex-end;
}
#message {
flex: 1;
resize: none;
}