aboutsummaryrefslogtreecommitdiff
path: root/template/style.css
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2022-01-30 21:39:50 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2022-01-30 21:39:50 +0100
commita306363f9d102a162d582f0f19920f6b6578a0f6 (patch)
treeff3a890b78fa33f6b4bff9ebd0583a706578899b /template/style.css
parent5ebb13dfdc28d210b184a5fa9dc863e41a8f2c63 (diff)
downloadmitjafelicijan.com-a306363f9d102a162d582f0f19920f6b6578a0f6.tar.gz
Added comments made with Nginx NJS
Diffstat (limited to 'template/style.css')
-rwxr-xr-xtemplate/style.css30
1 files changed, 30 insertions, 0 deletions
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 @@
14 --badge-label-color: #111111; 14 --badge-label-color: #111111;
15 15
16 --code-font-size: 13px; 16 --code-font-size: 13px;
17
18 --comment-form-font: 16px 'Times New Roman', Times, serif;
17} 19}
18 20
19* { 21* {
@@ -337,6 +339,34 @@ audio {
337 color: #666; 339 color: #666;
338} 340}
339 341
342/* comments */
343
344.comments input{
345 width: 100%;
346 font: var(--comment-form-font);
347 border: 1px solid #bbb;
348 padding: 5px;
349}
350
351.comments textarea{
352 width: 100%;
353 height: 100px;
354 resize: vertical;
355 font: var(--comment-form-font);
356 border: 1px solid #bbb;
357 padding: 5px;
358}
359
360.comments ul {
361 list-style-type: none;
362 padding: 0;
363 margin-top: 30px;
364}
365
366.comments hr {
367 border: initial !important;
368 border-top: initial !important;
369}
340 370
341/* responsive */ 371/* responsive */
342 372