client: basic message parsing, gateway listening

This commit is contained in:
Rory&
2026-05-17 03:14:34 +02:00
parent 9a0c741923
commit 8f76cc5edf
18 changed files with 664 additions and 29 deletions
@@ -24,6 +24,25 @@ pre, .code {
height: 0;
}
.mdErrorBlinkBg {
animation: ease-in-out 1s mdErrorBlinkBgAnim;
border: 1px #ff00ff;
margin-right: 1em;
border-radius: 3px;
}
@keyframes mdErrorBlinkBgAnim {
0%{
background-color: #ffff0088;
}
50% {
background-color: #ffff0000;
}
100% {
background-color: #ffff0088;
}
}
#app > div > main > div {
background-color: #333;
border-bottom: none;