1c9cfd7e6c
A major part of the css reorg is a better organization of the css styles themselves. horizon.scss should be a global import level file. Fix comment. Change-Id: I29be50ab173d23e361fe489df3f4d8590782d683 Partially-Implements: blueprint horizon-theme-css-reorg
19 lines
335 B
SCSS
19 lines
335 B
SCSS
/* Stand-alone SCSS file for Serial Console IFrame. */
|
|
|
|
#terminalNode {
|
|
display:inline-block;
|
|
}
|
|
|
|
.terminal {
|
|
float: left;
|
|
border: black solid 5px;
|
|
font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
|
|
font-size: 16px;
|
|
color: white;
|
|
background: black;
|
|
}
|
|
|
|
.terminal-cursor {
|
|
color: black;
|
|
background: white;
|
|
}; |