forked from jackhq/coffee-chat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchatlet.css
46 lines (46 loc) · 948 Bytes
/
chatlet.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
#chat_gadget_html {
background: transparent;
position: relative;
z-index: 100000;
}
#chat_gadget_html td {
padding: 0 3px;
}
#chat_gadget_body {
position: relative;
max-height: 25%;
padding: .5em;
border: 1px solid rgba(255,255,255,.5);
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
background: #EDE9DC;
background: rgba(193, 192, 166, 0.9);
-webkit-box-shadow: rgba(0, 0, 0, 0.296875) 0px 0px 4px;
}
#entry {
width: 80%;
font-size: inherit;
padding: .5em;
margin: .5em;
margin: 0;
background: rgba(0,0,0,.05);
border: 1px solid rgba(0,0,0,.1);
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
outline-width: 0;
clear: both;
}
#log {
max-height: 250px;
display: block;
/* enough padding to clear the toolbar.. is there a better way to do this? */
/* background: inherit;*/
overflow: auto;
}
#toggle_sound {
position: absolute;
bottom: 5px;
right: 5px;
}