-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.css
110 lines (88 loc) · 1.6 KB
/
chat.css
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
body {
background-color:#F5DEB3;
}
.container {
border: 2px solid #dedede;
background-color: #f1f1f1;
border-radius: 5px;
}
.received{
border-color: #ccc;
background-color: #ddd;
}
#img-right {
position: relative;
left:92%;
max-width: 70px;
width:100%;
}
#img-left {
position: relative;
left:2%;
max-width: 70px;
width:100%;
}
.time-right {
position:relative;
left:93%;
overflow-wrap:break-word;
}
.time{
color:black;
font-weight:800;
}
#chat-message-left{
margin-left:10%;
overflow-wrap:break-word;
}
#auditor-chat-message-left{
margin-left:10%;
overflow-wrap:break-word;
color:red;
font-weight: 900;
}
.unseen-style{
font-weight: bold;
}
#message-row-unseen{
border:2px solid black;
}
.seen-style{
color:black;
font-style: italic;
margin-left:10%;
}
#chat-message-right{
margin-left:83%;
overflow-wrap:break-word;
}
#auditor-chat-message-right{
margin-left:83%;
overflow-wrap:break-word;
color:red;
font-weight: 900;
}
#chat-input{
margin-top:1%;
}
#message-input{
margin-left:7%;
width:81%;
}
#chat-input-send-button{
margin-bottom: 3.5%;
}
#sender-username{
margin-left:2%;
font-weight: 700;
overflow-wrap:break-word;
}
#receiver-username{
display:inline-block;
margin-left:78%;
font-weight: 700;
overflow-wrap:break-word;
}
#error-p{
margin-left:8%;
}