From 48ca296192d2a63e69e847e0d9d0017934d6d285 Mon Sep 17 00:00:00 2001
From: Frank Sauerburger <frank@sauerburger.com>
Date: Mon, 6 May 2019 00:31:40 +0200
Subject: [PATCH] Add section numbering to privacy policy

---
 app/styles/application.css | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/app/styles/application.css b/app/styles/application.css
index 881569e..1a97977 100644
--- a/app/styles/application.css
+++ b/app/styles/application.css
@@ -80,4 +80,16 @@ a {
 footer, footer a {
   color: #ddd;
 }
+.terms h2 {
+    counter-reset: section;
+}
+
+.terms h3:before {
+      content: counter(section) ".\0000a0\0000a0";
+          counter-increment: section;
+              counter-reset: list;
+}
 
+.terms ol ol {
+    list-style-type: lower-alpha;
+}
-- 
GitLab