A dead simple real time webchat with authorization using websockets
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
900 B

2 years ago
@viewport {
width: device-width;
zoom: 1.0;
}
body {
margin: auto;
margin-top: 5ch;
margin-bottom: 10ch;
background-color: #232729;
max-width: 120ch;
padding-left: 2ch;
padding-right: 2ch;
font-size: 1.1em;
word-wrap: break-word;
color: #bbbbbb;
}
a {
text-decoration: none;
color: #bbbbbb;
}
a:hover {
color: azure;
}
nav {
white-space: nowrap;
display: inline-block;
}
.chat-image {
max-width: 40%;
max-height: 80%;
min-width: 12ch;
min-height: 16ch;
}
.greentext {
color: green;
}
2 years ago
#wrapper {
display: flex;
flex-flow: column wrap;
justify-content: center;
row-gap: 3ch;
}
#chatbox {
flex: 1 0 90%;
width: auto;
height: 60ch;
max-width: 80ch;
max-height: 150ch;
overflow-y: scroll;
border: 1px solid #bbbbbb;
}
#error_output {
color: firebrick;
}