-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (101 loc) · 1.54 KB
/
style.css
File metadata and controls
101 lines (101 loc) · 1.54 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
98
99
100
101
.container {
display: block;
position: absolute;
bottom:0px;
right:20px;
width: 250px;
background: #f7f7f7;
border: #ddd solid 1px;
}
.chat {
display: block;
position: relative;
height: 270px;
width: 100%;
overflow: auto;
margin: 1px;
}
.stream {
display: block;
position: relative;
height: auto;
width: 88%;
margin: 10px;
}
.msg {
display: block;
position: relative;
background: #eee;
border-top: #ddd solid 1px;
}
.msg > form >textarea {
display: inline-block;
width: 71%;
margin: 5px;
height: 36px;
resize: none;
}
.msg > form > input[type="submit"] {
display: inline-block;
width: 51px;
position: absolute;
top: 6px;
height: 40px;
background: #59c;
color: #fff;
border: #2A6592 solid 1px;
}
.m-rply, .f-rply{
float: right;
position: relative;
border-radius: 2px;
box-shadow: 0 1px 2px rgba(0,0,0,.15);
max-width: 100%;
margin: 5px 0;
}
.f-rply{
float: left;
}
.msg-bg{
background-color: #fff;
}
.msgA{
vertical-align: top;
padding: 7px 9px 11px;
position: relative;
}
.msg-time{
display: inline-block;
font-family: arial,sans-serif;
font-size: 11px;
color: rgba(0,0,0,.3);
}
.myrply-i, .myrply-f{
display: block;
background: url('icon.png');
height: 7px;
width: 6px;
position: absolute;
bottom: -1px;
z-index: 1;
right: -5px;
background-position: 0px -12px;
}
.myrply-f{
background-position: 0px 0px;
left: -5px;
top: 0;
}
.float-fix{
display: block;;
}
.float-fix{
width: 100%;
}
.float-fix:after{
clear: both;
height: 0;
content: "";
display: block;
position: relative;
}