Commit c774bc53 authored by Medicean's avatar Medicean

(Upgrade: Static/Terminal) 虚拟终端显示文字样式调亮

parent 42602cc9
...@@ -405,7 +405,7 @@ ...@@ -405,7 +405,7 @@
} }
@supports (--css: variables) { @supports (--css: variables) {
.terminal, .cmd { .terminal, .cmd {
color: var(--color, #aaa); color: var(--color, #eee);
background-color: var(--background, #000); background-color: var(--background, #000);
} }
.terminal, .cmd, .terminal .terminal-output div div, .cmd .prompt { .terminal, .cmd, .terminal .terminal-output div div, .cmd .prompt {
...@@ -413,7 +413,7 @@ ...@@ -413,7 +413,7 @@
line-height: calc(var(--size, 1) * 14px); line-height: calc(var(--size, 1) * 14px);
} }
.terminal .inverted, .cmd .inverted { .terminal .inverted, .cmd .inverted {
background-color: var(--color, #aaa); background-color: var(--color, #eee);
color: var(--background, #000); color: var(--background, #000);
} }
.cmd .cursor.blink { .cmd .cursor.blink {
...@@ -421,7 +421,7 @@ ...@@ -421,7 +421,7 @@
-moz-animation: var(--animation, terminal-blink) 1s infinite steps(1, start); -moz-animation: var(--animation, terminal-blink) 1s infinite steps(1, start);
-ms-animation: var(--animation, terminal-blink) 1s infinite steps(1, start); -ms-animation: var(--animation, terminal-blink) 1s infinite steps(1, start);
animation: var(--animation, terminal-blink) 1s infinite steps(1, start); animation: var(--animation, terminal-blink) 1s infinite steps(1, start);
color: var(--color, #aaa); color: var(--color, #eee);
background-color: var(--background, #000); background-color: var(--background, #000);
margin-bottom: -3px; margin-bottom: -3px;
} }
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
} }
.terminal, .cmd { .terminal, .cmd {
font-family: FreeMono, monospace; font-family: FreeMono, monospace;
color: #aaa; color: #eee;
background-color: #000; background-color: #000;
font-size: 12px; font-size: 12px;
line-height: 14px; line-height: 14px;
...@@ -105,13 +105,13 @@ ...@@ -105,13 +105,13 @@
/*display: inline-block; */ /*display: inline-block; */
} }
.terminal .inverted, .cmd .inverted, .cmd .cursor.blink { .terminal .inverted, .cmd .inverted, .cmd .cursor.blink {
background-color: #aaa; background-color: #eee;
color: #000; color: #000;
} }
.terminal .terminal-output div div::-moz-selection, .terminal .terminal-output div div::-moz-selection,
.terminal .terminal-output div span::-moz-selection, .terminal .terminal-output div span::-moz-selection,
.terminal .terminal-output div div a::-moz-selection { .terminal .terminal-output div div a::-moz-selection {
background-color: #aaa; background-color: #eee;
color: #000; color: #000;
} }
.terminal .terminal-output div div::selection, .terminal .terminal-output div div::selection,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment