-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (85 loc) · 1.93 KB
/
index.html
File metadata and controls
97 lines (85 loc) · 1.93 KB
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
<html>
<head>
<title>Sample App</title>
<style>
body,
input {
font-family: Verdana, Geneva, sans-serif;
}
#root {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.Chat {
width: 320px;
height: 700px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.ChatHeader {
padding: 10px;
height: 20px;
}
.ChatHeader-title {
font-size: 14px;
font-weight: normal;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin: 0;
color: #414346;
}
.ChatThread {
flex: 1 0 auto;
overflow-y: scroll;
border-left: 1px solid #8d8f92;
border-right: 1px solid #8d8f92;
border-top: 1px solid #8d8f92;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
padding: 5px 20px 15px;
line-height: 1.4;
max-height: 575px;
}
.ChatNewMessage {
height: 70px;
}
.ChatNewMessage-input {
border: 1px solid #8d8f92;
height: 50px;
width: 100%;
padding: 0 14px;
font-size: 16px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
outline: none;
}
.ChatNewMessage-input:focus {
outline: none;
border-color: #414346;
transition: border-color 0.1s ease;
}
.ChatThreadMessageMember {
font-size: 12px;
font-weight: bold;
color: #414346;
margin-top: 10px;
}
.ChatThreadMessageText {
font-size: 14px;
}
.ChatThreadMessageImage {
width: 100%;
height: auto;
margin: 2px 0;
}
</style>
</head>
<body>
<div id="root">
</div>
<script src="/static/bundle.js"></script>
</body>
</html>