50 lines
659 B
CSS
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;
|
||
|
|
}
|
||
|
|
|