Add connect form, add /join command

This commit is contained in:
Simon Ser
2020-06-05 23:35:33 +02:00
parent cbf64e56a0
commit f66c7c52f3
3 changed files with 195 additions and 60 deletions

View File

@@ -12,7 +12,8 @@ body {
font-family: monospace;
}
#sidebar, #buffer {
#sidebar, #buffer, #connect {
width: 100%;
height: 100%;
overflow: auto;
}
@@ -49,6 +50,22 @@ body {
display: none;
}
#connect {
position: absolute;
top: 0;
left: 0;
height: 100%;
background: white;
}
#connect form {
margin: 0 auto;
max-width: 300px;
}
#connect input {
box-sizing: border-box;
width: 100%;
}
a {
color: green;
}