tscrape_html: add style.css - tscrape - twitter scraper
(HTM) git clone git://git.codemadness.org/tscrape
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 3256e00c6408e55e17d9de130d677392acf78177
(DIR) parent b8b076dffc9fa2002ffb380b7b1e7d184189f539
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 13 Aug 2017 11:04:01 +0200
tscrape_html: add style.css
Diffstat:
A style.css | 66 +++++++++++++++++++++++++++++++
1 file changed, 66 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/style.css b/style.css
@@ -0,0 +1,66 @@
+body {
+ font-size: 9pt;
+ color: #333;
+ background-color: #fff;
+ padding: 0;
+ margin: 0;
+ font-family: monospace;
+ overflow: hidden;
+}
+body.frame {
+ overflow: hidden;
+ overflow-y: auto;
+}
+h2 {
+ font-size: 14pt;
+ margin: 0.5em 0;
+}
+#sidebar ul, #sidebar ul li {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+#sidebar {
+ background-color: inherit;
+}
+#sidebar a {
+ padding: 5px 3px 5px 10px;
+}
+#sidebar a {
+ display: block;
+}
+#sidebar a, #items h2 a {
+ color: inherit;
+}
+div#items {
+ padding: 0 15px;
+}
+body.noframe div#sidebar {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 175px;
+ height: 100%;
+ overflow: hidden;
+ overflow-y: auto;
+ z-index: 999;
+}
+body.noframe div#items {
+ left: 175px;
+ position: absolute;
+ height: 100%;
+ top: 0;
+ right: 0;
+ overflow: auto;
+}
+body.noframe div#items.nosidebar {
+ left: 0px;
+}
+body.frame #sidebar br {
+ display: none;
+}
+body.frame .content {
+ padding: 0 1em;
+ font-family: sans;
+ font-size: medium;
+}