summaryrefslogtreecommitdiff
path: root/static/style.css
blob: 00fe4a4895db8e0c058d8e6cbc30a7b8dff05a14 (plain)
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
* {
	font-family: sans-serif;
}

#chatlog {
	display: table;
	list-style: none;
	margin: 0;
	padding: 0
}

#chatlog li {
	display: table-row;
	margin: 0;
	padding: 0;
}

#chatlog li .nick {
	display: table-cell;
	padding-right: 1ex;
	font-weight: bold;
}

#chatlog li .msg {
	display: table-cell;
}