summaryrefslogtreecommitdiffstats
path: root/docs/feedcss
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-05-08 14:34:58 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2021-05-19 14:58:29 +0200
commit79e469fd335133671185cf8539f77ef38ac3b4e6 (patch)
tree4e2b7075e85225c9ac93cf78c7ef1e95b78e5ac4 /docs/feedcss
parent271b6ee3c993264bd44a966b82f1a5daa85f53ab (diff)
Refactor News documentation with mkdocs and mkdocs-material
- move all pages to new structure - use gh-pages to host html version - use github actions for automatic build Co-authored-by: anoy <anoymouserver+github@mailbox.org> Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'docs/feedcss')
-rw-r--r--docs/feedcss/README.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/feedcss/README.md b/docs/feedcss/README.md
deleted file mode 100644
index 74f652eaf..000000000
--- a/docs/feedcss/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Custom CSS
-Sometimes you want to add additional CSS for a feed to improve the rendering. This can very easily be done by adding a CSS class to **css/custom.css** following the following naming convention:
-
-* Take the URL from the \<link> attribute (e.g.: \<link>https://www.google.de/path?my=query \</link>)
-* Extract the Domain from the URL (e.g.: www.google.de)
-* Strip the leading **www.** (e.g.: google.de)
-* Replace all . with - (e.g.: google-de)
-* Prepend **custom-** (e.g.: custom-google-de)
-
-Each class rule should be prefixed with **#app-content** and should only affect the article body. An example rule would be:
-
-```css
-#app-content .custom-google-de .body {
- /* Custom CSS rules here */
-}
-``` \ No newline at end of file