about summary refs log tree commit diff
path: root/users/fcuny/blog/static/css
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-08-15 13:46:47 -0700
committerFranck Cuny <franck@fcuny.net>2021-08-15 13:46:47 -0700
commit9ab556530d088ed2046f9e1fd2ffe92783b9cfaf (patch)
treee90395dbccb233d993df3e8aa1d6056000299521 /users/fcuny/blog/static/css
parentCSS: use a class for the menu (diff)
downloadworld-9ab556530d088ed2046f9e1fd2ffe92783b9cfaf.tar.gz
CSS: support table of content
If an entry has the parameter `#+toc` set to `t`, we will enable the
table of content in the page.
Diffstat (limited to 'users/fcuny/blog/static/css')
-rw-r--r--users/fcuny/blog/static/css/custom.css12
1 files changed, 12 insertions, 0 deletions
diff --git a/users/fcuny/blog/static/css/custom.css b/users/fcuny/blog/static/css/custom.css
index b4e37bc..8f776d7 100644
--- a/users/fcuny/blog/static/css/custom.css
+++ b/users/fcuny/blog/static/css/custom.css
@@ -140,3 +140,15 @@ nav.menu a.menu-active:hover {
 nav.menu a.menu-active {
     color: #007d9c;
 }
+
+.toc {
+    border: 1px solid black;
+    padding: 1rem;
+    margin-top: 1rem;
+    color: black;
+}
+
+.toc a,
+.toc a.visited {
+    color: black;
+}