aboutsummaryrefslogtreecommitdiff
path: root/assets/css
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2019-08-08 23:02:03 +0200
committervincent-peugnet <v.peugnet@free.fr>2019-08-08 23:02:03 +0200
commitef18c5f848a5e4d1239bdc1d89e0cc9f75a10512 (patch)
tree23b154c9d71e15c75a201822318eaa66dcefc99e /assets/css
parente75e54d23d262940acd4c7df2a8cc7b7ab1751d5 (diff)
downloadwcms-ef18c5f848a5e4d1239bdc1d89e0cc9f75a10512.tar.gz
wcms-ef18c5f848a5e4d1239bdc1d89e0cc9f75a10512.zip
feature : terminal style option
+ bug fix : externallinkblank missing underscore
Diffstat (limited to 'assets/css')
-rw-r--r--assets/css/terminal.css70
1 files changed, 70 insertions, 0 deletions
diff --git a/assets/css/terminal.css b/assets/css/terminal.css
new file mode 100644
index 0000000..ae26ff0
--- /dev/null
+++ b/assets/css/terminal.css
@@ -0,0 +1,70 @@
+body, input, textarea, a, main.media code, a:hover {
+ color: #ffffff;
+}
+
+input[type="submit"]:hover, .checkboxtab:hover ~label{
+ color: #000000;
+ background: #ffffff;
+ cursor:pointer;
+}
+
+body {
+ background: black;
+ font-family: monospace;
+ font-size: medium;
+}
+
+div#topbar, article#main, main.media div, main.home div#options, main.info nav, main article, h1, h2, main.info article h4, textarea, input {
+ background:transparent;
+ border-color: white;
+}
+
+.editor div#leftbar, .editor #edittopbar, .editor div#rightbar, details, .editor .tabs {
+ background:transparent;
+ border-color: white;
+}
+
+.editor div#leftbarpanel, .editor div#rightbarpanel {
+ border: solid 1px;
+}
+
+ .tabs .tab .content {
+ background: black;
+ }
+
+ .editor label.toogle:hover {
+ background: white;
+ }
+
+.checkboxtab:checked ~label {
+ color: white;
+ background: black;
+}
+
+.editor {
+ background: black;
+ }
+
+
+tr:hover, th, th a, .panel summary {
+ color: #000000;
+ background: #ffffff;
+}
+
+main.timeline p.eline {
+ color: black;
+ font-family: monospace;
+}
+
+img.icon {
+ filter: invert(1);
+ height: 10px;
+}
+
+tr:hover img.icon {
+ filter: invert(0);
+}
+
+main.media tr:hover a {
+ color: black;
+} \ No newline at end of file