style.css - tscrape - twitter scraper (not working anymore) | |
git clone git://git.codemadness.org/tscrape | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
style.css (812B) | |
--- | |
1 body { | |
2 background-color: #fff; | |
3 color: #333; | |
4 font-family: monospace; | |
5 font-size: 9pt; | |
6 margin: 0; | |
7 overflow: hidden; | |
8 padding: 0; | |
9 } | |
10 h2 { | |
11 font-size: 14pt; | |
12 margin: 0.5em 0; | |
13 } | |
14 #sidebar ul, #sidebar ul li { | |
15 list-style: none; | |
16 margin: 0; | |
17 padding: 0; | |
18 } | |
19 #sidebar { | |
20 background-color: inherit; | |
21 } | |
22 #sidebar a { | |
23 padding: 5px 3px 5px 10px; | |
24 } | |
25 #sidebar a { | |
26 display: block; | |
27 } | |
28 #sidebar a, #items h2 a { | |
29 color: inherit; | |
30 } | |
31 div#items { | |
32 padding: 0 15px; | |
33 } | |
34 body.noframe div#sidebar { | |
35 height: 100%; | |
36 left: 0; | |
37 overflow: auto; | |
38 position: fixed; | |
39 top: 0; | |
40 width: 250px; | |
41 z-index: 999; | |
42 } | |
43 body.noframe div#items { | |
44 height: 100%; | |
45 left: 250px; | |
46 overflow: auto; | |
47 position: absolute; | |
48 right: 0; | |
49 top: 0; | |
50 } | |
51 body.noframe div#items.nosidebar { | |
52 left: 0px; | |
53 } | |
54 body.frame { | |
55 overflow: auto; | |
56 } | |
57 body.frame #sidebar br { | |
58 display: none; | |
59 } |