first commit
This commit is contained in:
49
assets/css/style.css
Normal file
49
assets/css/style.css
Normal file
@@ -0,0 +1,49 @@
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user