~ntt-pf-lab/nova/monkey_patch_notification

« back to all changes in this revision

Viewing changes to vendor/tornado/demos/chat/static/chat.css

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2009 FriendFeed
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License"); you may
 
5
 * not use this file except in compliance with the License. You may obtain
 
6
 * a copy of the License at
 
7
 *
 
8
 *     http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
12
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
 * License for the specific language governing permissions and limitations
 
14
 * under the License.
 
15
 */
 
16
 
 
17
body {
 
18
  background: white;
 
19
  margin: 10px;
 
20
}
 
21
 
 
22
body,
 
23
input {
 
24
  font-family: sans-serif;
 
25
  font-size: 10pt;
 
26
  color: black;
 
27
}
 
28
 
 
29
table {
 
30
  border-collapse: collapse;
 
31
  border: 0;
 
32
}
 
33
 
 
34
td {
 
35
  border: 0;
 
36
  padding: 0;
 
37
}
 
38
 
 
39
#body {
 
40
  position: absolute;
 
41
  bottom: 10px;
 
42
  left: 10px;
 
43
}
 
44
 
 
45
#input {
 
46
  margin-top: 0.5em;
 
47
}
 
48
 
 
49
#inbox .message {
 
50
  padding-top: 0.25em;
 
51
}
 
52
 
 
53
#nav {
 
54
  float: right;
 
55
  z-index: 99;
 
56
}