~dricottone/blog

ref: 8f49eee85eb919e6cf8ed2d6a0d5ef363d3d8e98 blog/static/css/chat.css -rw-r--r-- 1.4 KiB
8f49eee8Dominic Ricottone Color changes 1 year, 6 months ago
                                                                                
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
#pubkey-shown {
  width: 90%;
  padding: .25em;
  margin: 0 0 1em 0;
  font-family: monospace;
  background-color: #f8f9fa;
  word-break: break-all;
  border-radius: .5em;
}

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: 88%;
  padding: 0.5em;
  border-radius: 1.25em;
}

button#chat-button {
  width: 9%;
  padding: 0.5em;
  border-radius: 1.25em;
}