1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
input {
padding: 0.5em;
border-radius: 1.25em;
}
button {
width: 6em;
padding: 0.5em;
border-radius: 1.25em;
border-color: #f8f9fa;
}
#identity {
display: inline-block;
margin: 0 0 0.5em 0;
border-radius: 1.25em;
background-color: #f8f9fa;
}
#identity-content {
display: block;
margin: 0 0 1em 0;
}
#identity-pubkey {
margin: 0 0.5em 0 0.5em;
font-family: monospace;
background-color: #ffffff;
word-break: break-all;
border-radius: .5em;
}
#passwd {
display: inline-block;
margin: 0 0 0.5em 0;
border-radius: 1.25em;
background-color: #f8f9fa;
}
#passwd-content {
display: block;
margin: 0 0 1em 0;
}
#passwd-button {
width: 8em;
}
.resized {
display: block !important;
}
.hidden {
display: none !important;
}
ul#chat-room {
margin: 0;
padding: 2em;
}
ul#chat-room li {
position: relative;
margin: 0.5em 4em 0 0;
padding: 0.5em;
border-radius: 1.25em;
list-style: none;
word-break: break-word;
background-color: #bbffbb;
}
ul#chat-room li::before {
position: absolute;
width: 0;
height: 0;
content: '';
bottom: -0.75em;
left: -0.75em;
transform: rotate(90deg);
border-top: 1.5em solid transparent;
border-bottom: 1.5em solid transparent;
border-right: 1.5em solid #bbffbb;
}
ul#chat-room li.unreadable {
background-color: #ff6666;
}
ul#chat-room li.unreadable::before {
border-right: 1.5em solid #ff6666;
}
ul#chat-room li.own {
background-color: #bbffff;
margin: 0.5em 0 0 4em;
}
ul#chat-room li.own::before {
display: none;
}
ul#chat-room li.own::after {
position: absolute;
width: 0;
height: 0;
content: '';
bottom: -0.75em;
right: -0.75em;
transform: rotate(90deg);
border-top: 1.5em solid transparent;
border-bottom: 1.5em solid transparent;
border-right: 1.5em solid #bbffff;
}
input#chat-input {
width: calc(100% - 6em);
}
button#chat-button {
width: 4em;
}