first draft

This commit is contained in:
Quentin Lapointe 2019-01-28 13:31:54 +00:00
parent 94ae46ee9a
commit 1c577f427f
2 changed files with 34 additions and 18 deletions
public

View file

@ -17,7 +17,7 @@ html {
body, html {
min-height: 100%;
min-width: 600px;
background-color: #181A1D;
background-color: #003173;
overflow: hidden;
padding: 0px;
margin:0px;
@ -58,7 +58,7 @@ body, html {
#chat i {
font-style: normal;
}
#chat i.motd { color: #99FF99; display:inline-block; line-height: 12px !important; }
#chat i.motd { color: #FFFFFF; display:inline-block; line-height: 12px !important; }
#chat i.info { color: #999999; }
#chat i.server { color: #99FFFF; }
#chat i.error { color: #ff7777; }
@ -112,4 +112,4 @@ body, html {
@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}
}

View file

@ -5,30 +5,46 @@ define({
ttl: 600000,
motd: '<pre>\n\n' +
'▄████▄ ██▀███ ▓██ ██▓ ██▓███ ▄▄▄█████▓ ▄▄▄ ██▓ ██ ▄█▀ \n' +
'▒██▀ ▀█ ▓██ ▒ ██▒▒██ ██▒▓██░ ██▒▓ ██▒ ▓▒▒████▄ ▓██▒ ██▄█▒ \n' +
'▒▓█ ▄ ▓██ ░▄█ ▒ ▒██ ██░▓██░ ██▓▒▒ ▓██░ ▒░▒██ ▀█▄ ▒██░ ▓███▄░ \n' +
'▒▓▓▄ ▄██▒▒██▀▀█▄ ░ ▐██▓░▒██▄█▓▒ ▒░ ▓██▓ ░ ░██▄▄▄▄██ ▒██░ ▓██ █▄ \n' +
'▒ ▓███▀ ░░██▓ ▒██▒ ░ ██▒▓░▒██▒ ░ ░ ▒██▒ ░ ▓█ ▓██▒░██████▒▒██▒ █▄ \n' +
'░ ░▒ ▒ ░░ ▒▓ ░▒▓░ ██▒▒▒ ▒▓▒░ ░ ░ ▒ ░░ ▒▒ ▓▒█░░ ▒░▓ ░▒ ▒▒ ▓▒ \n' +
' ░ ▒ ░▒ ░ ▒░▓██ ░▒░ ░▒ ░ ░ ▒ ▒▒ ░░ ░ ▒ ░░ ░▒ ▒░ \n' +
'░ ░░ ░ ▒ ▒ ░░ ░░ ░ ░ ▒ ░ ░ ░ ░░ ░ \n' +
'░ ░ ░ ░ ░ ░ ░ ░ ░░ ░ \n' +
'░ ░ ░ \n' +
' https://github.com/hexagon/cryptalk \n' +
' ███ \n' +
' ██████ \n' +
' ███ ████████ ███ \n' +
' ████████ ███████████ ████████ \n' +
' ████████ ██████████ █████████ \n' +
' ██████ █████████ █████ \n' +
' ███ █████████████ ███ \n' +
' ██████ ███████████████████ ██████ \n' +
' ███████████████████████████████████████████████ \n' +
' ██████████████████████████████████████████████ \n' +
' ███████████████████████████████████████████ \n' +
' ███████████████████████████████████████ \n' +
' ████████████████████████████████████ \n' +
' ██ █████████████████████████ ████ \n' +
' ████ ████████████████████████ ██████ \n' +
' ███████ ██████████████████████ ████████ \n' +
' ████████ █████████████████████████ ████████ \n' +
' ██████████████████████████████████ \n' +
' ████████████████████████████ \n' +
' ██████████ ███████████ \n' +
' █████████ ██████████ \n' +
' █████ █████████ ██████ \n' +
' ████████ \n' +
' █████ \n' +
' ███ \n' +
' \n' +
' Tip of the day: /help \n' +
' Get roomID and passphrase from Vauban Technologies then type: \n' +
' /join roomID \n' +
' /key passphrase \n' +
'----------------------------------------------------------------------' +
'</pre>',
nick: {
maxLen: 20,
minLen: 2,
minLen: 2,
},
key: {
maxLen: 1024,
minLen: 8,
minLen: 8,
},
room: {
@ -39,4 +55,4 @@ define({
notifications: {
maxOnePerMs: 3000
}
});
});