Browse Source

implement dark mode style for commento

Thomas Buck 2 years ago
parent
commit
0499f95296
1 changed files with 23 additions and 0 deletions
  1. 23
    0
      static/css/style.css

+ 23
- 0
static/css/style.css View File

278
     pre {
278
     pre {
279
         background-color: #000000;
279
         background-color: #000000;
280
     }
280
     }
281
+
282
+    .commento-profile-button {
283
+        fill: #FFFFFF;
284
+    }
285
+
286
+    #commento-textarea-root {
287
+        color: #FFFFFF;
288
+        background-color: #232323;
289
+        border-color: #B0B0B0;
290
+        border-width: 2px;
291
+    }
292
+
293
+    #commento-footer, .commento-markdown-button {
294
+        display: none !important;
295
+    }
296
+
297
+    .commento-card {
298
+        background-color: #232323 !important;
299
+    }
300
+
301
+    .commento-name, .commento-permalink, [id^=commento-comment-text] p {
302
+        color: #FFFFFF !important;
303
+    }
281
 }
304
 }

Loading…
Cancel
Save