inspec/www/tutorial/app/xterm-terminal/xterm-terminal.component.css

32 lines
763 B
CSS
Raw Normal View History

2016-08-29 21:12:31 +00:00
#terminal-container {
margin: 0 auto;
padding: 2px;
2016-09-02 19:13:07 +00:00
font-size: 16px;
2016-09-19 08:32:23 +00:00
max-width: 1000px;
-webkit-font-smoothing: antialiased;
font-family: monospace;
font-size: 1.2rem;
2016-08-29 21:12:31 +00:00
}
2016-09-02 19:13:07 +00:00
#terminal-container .terminal {
background-color: #111;
2016-08-29 21:12:31 +00:00
color: #fafafa;
padding: 2px;
}
2016-09-02 19:13:07 +00:00
#terminal-container .terminal:focus .terminal-cursor {
2016-08-29 21:12:31 +00:00
background-color: #fafafa;
}
/* the black color used by xterm terminal isn't quite black
so we're deep assigning here to make sure that 0 is marked as black */
2016-09-02 19:13:07 +00:00
:host /deep/ .xterm-color-0 {
color: black;
}
2016-09-03 15:59:37 +00:00
/* the blue color that xterm terminal uses doesn't show well
on the black background so we're deep assigning to make 6 a lightskyblu*/
2016-09-03 15:59:37 +00:00
:host /deep/ .xterm-color-6 {
color: lightskyblue;
2016-09-19 08:32:23 +00:00
}