blob: 60ff240157babfca76621cd616b4d0689a7b5f18 (
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
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
|
/* -*- mode: css -*- */
h1 {
font-size: 2em;
margin: 0 0 0.75em 0.75em;
}
#feed-list-container {
position: fixed;
left: 0;
top: 0;
width: 30%;
bottom: 0;
overflow: auto;
clear: none;
float: left;
z-index: 0;
}
#feed-list {
position: relative;
margin: 0 5px 0 5px;
padding: 0 5px 0 5px;
top: 3.5em;
border: 1px solid #888;
}
.active-feed-name {
font-weight: bold;
font-stretch: wider;
}
body {
/* width: 80%; */
margin: 10px;
}
#feed-content-container {
position: absolute;
/* width: 70%; */
top: 0;
left: 30%;
right: 0;
display: block;
z-index: 1;
}
#feed-content {
padding: 0 5px 0 5px;
margin: 0 5px 0 5px;
position: relative;
top: 3.5em;
border: solid 1px #888;
}
|