blob: 642948fdc14498c702906a6ca90d981c00a3f928 (
plain) (
blame)
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
|
body {
margin: 0px;
}
#page {
font-family: 'Open Sans', Helvetica, Arial, Sans-Serif;
font-size: 12pt;
margin: auto;
max-width: 640px;
padding: 20px;
}
.header {
height: 87px;
border-bottom: 4px solid #e4f7ed;
}
.logo {
float: right;
margin-left: 20px;
}
.salutation {
padding-top: 10px;
font-weight: bold;
}
.summarytext {
}
.room_header {
padding-top: 38px;
padding-bottom: 10px;
border-bottom: 1px solid #e5e5e5;
}
.room_header h2 {
margin-top: 0px;
margin-left: 75px;
font-size: 20px;
}
.room_avatar {
float: left;
margin-top: -8px;
}
.room_avatar img {
width: 48px;
height: 48px;
object-fit: cover;
border-radius: 24px;
margin-left: 7px;
}
.room_content {
clear: left;
}
.notif {
border-bottom: 1px solid #e5e5e5;
margin-top: 16px;
padding-bottom: 16px;
}
.historical {
opacity: 0.3;
}
.message {
position: relative;
margin-bottom: 10px;
}
.sender_avatar {
width: 32px;
height: 32px;
border-radius: 16px;
position: absolute;
margin-left: 14px;
margin-top: -2px;
}
.sender_name {
margin-left: 75px;
display: inline;
font-weight: bold;
}
.message_time {
float: right;
}
.message_body {
margin-left: 75px;
}
.notif_link {
margin-left: 75px;
font-weight: bold;
}
.notif_link a, .footer a {
color: #76CFA6;
text-decoration: none;
}
.footer {
margin-top: 20px;
text-align: center;
}
|