ish/app/xtermjs/term.css
Theodore Dubois 537f8075fc Further UI improvements
scroll momentum, correct initial layout, padding adjustment, moved the
xtermjs files into app
2017-11-09 14:55:44 -08:00

44 lines
791 B
CSS

html, body, #terminal {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
}
body {
background: transparent;
}
#terminal {
padding: 2px 5px;
}
.terminal {
background: transparent;
color: black;
font-family: "Menlo";
font-size: 12px;
-webkit-user-select: text;
-webkit-tap-highlight-color: transparent;
}
.terminal textarea {
display: none;
}
.terminal .xterm-viewport {
background: transparent;
-webkit-overflow-scrolling: touch;
}
.terminal.focus:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar) .terminal-cursor {
background-color: black;
color: #000;
}
.terminal:not(.focus) .terminal-cursor {
outline: 1px solid black;
outline-offset: -1px;
background-color: transparent;
}