~bnrubin/bantrackertwo/devel

« back to all changes in this revision

Viewing changes to templates/media/irc.css

  • Committer: Benjamin Rubin
  • Date: 2009-08-10 16:53:45 UTC
  • Revision ID: bnrubin@romulus-20090810165345-c6en6tdw7k6rydfh
- Comments now are part of the parent Event to make templating easier
- Began some basic template work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
body { 
 
2
margin: 0;
 
3
padding: 0;
 
4
background: #565248;
 
5
color: #d9bb7a;
 
6
-x-system-font: none;
 
7
font-family: Verdana,sans-serif;
 
8
font-size: 12px;
 
9
font-size-adjust: none;
 
10
font-stretch: normal;
 
11
font-style: normal;
 
12
font-variant: normal;
 
13
font-weight: normal;
 
14
line-height: 1.4em;
 
15
}
 
16
 
 
17
#container {
 
18
margin-left: 50px;
 
19
margin-right: 50px;
 
20
}
 
21
 
 
22
#header {
 
23
background: #816647;
 
24
}
 
25
 
 
26
#events {
 
27
background: #816647;
 
28
}
 
29
 
 
30
#header {
 
31
padding: 5px;
 
32
font-weight: bold;
 
33
white-space: nowrap;
 
34
list-style: none outside none;
 
35
}
 
36
 
 
37
 
 
38
 
 
39
#header ul {
 
40
padding: 0px;
 
41
display: inline;
 
42
}
 
43
 
 
44
#header li {
 
45
display: inline;
 
46
}
 
47
 
 
48
#header li.right {
 
49
display: inline;
 
50
float: right;
 
51
margin-right: 5px;
 
52
}
 
53
 
 
54
tr {
 
55
text-align:left;
 
56
}
 
57
 
 
58
th.operator {
 
59
padding-right: 100px;
 
60
}
 
61
 
 
62
th.channel {
 
63
padding-right: 100px;
 
64
}
 
65
 
 
66
th.log {
 
67
float: left;
 
68
}
 
69
 
 
70
#log {
 
71
border: 2px dotted;
 
72
margin: 5px;
 
73
}
 
74
 
 
75
a {
 
76
text-decoration: none;
 
77
color: #fdd99b;
 
78
}
 
79
a:hover {
 
80
border-bottom: 1px dotted #fdd99b;
 
81
}
 
82