forked from NickCarneiro/PillowChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpillowchat.css
More file actions
159 lines (144 loc) · 2.82 KB
/
pillowchat.css
File metadata and controls
159 lines (144 loc) · 2.82 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
line-height: 1;
color: black;
background: white;
}
ol, ul {
list-style: none;
}
a img {
border: none;
}
h1 {
font-size: 36px;
font-weight: bold;
text-align: center;
padding-top:10px;
line-height: 1;
}
html {
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.4em;
background: #eeeeee;
color: #333333;
}
/*
shadows inspired by Jérôme Gravel-Niquet's backbone todo demo
http://documentcloud.github.com/backbone/examples/todos/index.html
*/
#chat_container{
margin: 0px auto;
margin-top: 0px;
width: 555px;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
}
#chat_box {
display: block;
float: left;
width: 404px;
height: 400px;
background: #ffffff;
overflow-y:auto;
overflow-x:hidden;
margin-right: 0px;
border-right: 1px solid #eeeeee;
}
#chat_input{
width: 330px;
margin-bottom:10px;
}
#chat_users{
display:block;
height: 400px;
width: 150px;
overflow-y:auto;
overflow-x:hidden;
border-left: 10px;
border:#eeeeee;
background: #ffffff;
}
#chat_messages{
margin:10px;
}
#user_list{
margin: 10px;
}
#bottom_pane{
margin-top:1px;
background: #ffffff;
width: 555px;
}
#bottom_controls{
padding: 10px 10px 10px 10px;
}
#user_list{
list-style:none;
text-align:left;
}
#header{
margin: 0px auto;
text-align:center;
width: 555px;
background:#ffffff;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 0px 0;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 0px 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
border-bottom: 1px solid #eeeeee;
padding-bottom:10px;
}
#chat_username_prompt{
width:555px;
margin: 0px auto;
background: #ffffff;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
}
#prompt_controls{
padding:10px;
width: 300px;
margin: 0px auto;
}
.username{
font-weight: bold;
}
#footer{
width: 300px;
margin: 0px auto;
margin-top: 50px;
color: #999;
text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
text-align: center;
}
#footer a{
color: #888;
}
fieldset{
border: none;
}