From a306363f9d102a162d582f0f19920f6b6578a0f6 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sun, 30 Jan 2022 21:39:50 +0100 Subject: Added comments made with Nginx NJS --- template/style.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'template/style.css') diff --git a/template/style.css b/template/style.css index aa0be85..cce9621 100755 --- a/template/style.css +++ b/template/style.css @@ -14,6 +14,8 @@ --badge-label-color: #111111; --code-font-size: 13px; + + --comment-form-font: 16px 'Times New Roman', Times, serif; } * { @@ -337,6 +339,34 @@ audio { color: #666; } +/* comments */ + +.comments input{ + width: 100%; + font: var(--comment-form-font); + border: 1px solid #bbb; + padding: 5px; +} + +.comments textarea{ + width: 100%; + height: 100px; + resize: vertical; + font: var(--comment-form-font); + border: 1px solid #bbb; + padding: 5px; +} + +.comments ul { + list-style-type: none; + padding: 0; + margin-top: 30px; +} + +.comments hr { + border: initial !important; + border-top: initial !important; +} /* responsive */ -- cgit v1.2.3