From cd72c93808e610e7632e0259bd224b6f504c635c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 14 Feb 2019 23:43:35 +0100 Subject: [PATCH] Add article ins/del highlight --- article.css | 7 +++++++ article.scss | 13 +++++++++++++ styles.css | 7 +++++++ 3 files changed, 27 insertions(+) diff --git a/article.css b/article.css index b6f3f5c..e597a11 100644 --- a/article.css +++ b/article.css @@ -23,6 +23,13 @@ article { padding: 10px; margin: 0; font-size: 0.9rem; } + article del, article ins { + padding: 3px; + text-decoration: none; } + article del { + background: #ff9e9e; } + article ins { + background: #b0f3b0; } article h1, article h2, article h3, article h4, article h5, article h6 { font-weight: bold; } article h1 { diff --git a/article.scss b/article.scss index 86de351..2a37994 100644 --- a/article.scss +++ b/article.scss @@ -6,6 +6,19 @@ article { margin: 0; font-size: 0.9rem; + del, ins { + padding: 3px; + text-decoration: none; + } + + del { + background: #ff9e9e; + } + + ins { + background: #b0f3b0; + } + h1, h2, h3, h4, h5, h6 { font-weight: bold; //padding-bottom: 1rem; diff --git a/styles.css b/styles.css index cda5f9d..0f33d91 100644 --- a/styles.css +++ b/styles.css @@ -3238,6 +3238,13 @@ article { padding: 10px; margin: 0; font-size: 0.9rem; } + article del, article ins { + padding: 3px; + text-decoration: none; } + article del { + background: #ff9e9e; } + article ins { + background: #b0f3b0; } article h1, article h2, article h3, article h4, article h5, article h6 { font-weight: bold; } article h1 {