-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (84 loc) · 1.39 KB
/
style.css
File metadata and controls
97 lines (84 loc) · 1.39 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
.cursor {
background: black;
width: 2px !important;
}
#editor {
width: 600px;
height: 600px;
border: 1px solid grey;
display: inline;
float: left;
}
#chat-input {
position: absolute;
width: 230px;
margin-top: 515px;
}
#chat-send {
position: absolute;
right: 20px;
margin-top: 515px;
}
.chat {
width: 300px;
height: 600px;
float: right;
background: #7494c0;
overflow: hidden;
}
.chat .title {
background: #273246;
padding: 10px;
text-align: center;
font-size: 150%;
color: #ffffff;
}
.chat .contents {
padding: 10px;
overflow: hidden;
line-height: 135%;
}
.chat .scroll {
height: 500px;
overflow-x: scroll;
overflow-y: scroll;
}
.chat .post {
width: 100%;
position: relative;
display: block;
margin-bottom: 5px;
max-width: 80%;
clear: both;
}
.chat .post figure {
width: 50px;
position: absolute;
top: 15px;
left: 0;
padding: 0;
margin: 0;
}
.chat .post .content {
margin-left: 15px;
}
.chat .post .content .name {
font-size: 30%;
color: #ffffff;
}
.chat .post .message {
margin: 0;
position: relative;
padding: 5px;
border-radius: 20px;
background-color: #ffffff;
}
.chat .post .message::after {
content: '';
position: absolute;
display: block;
width: 0;
height: 0;
left: -10px;
top: 10px;
}