forked from tools/josh
1
0
Fork 0
josh/css/main.css

95 lines
1.2 KiB
CSS
Raw Normal View History

2018-11-28 21:50:06 +01:00
a:link {
color: #00CC00;
}
a:visited {
color: #00CC00;
}
a:hover {
color: #007700;
}
2018-11-29 00:56:58 +01:00
@media (max-width:600px) {
.wideScreenOnly {
display: none;
}
.smallScreenOnly {
display: inline;
}
}
@media (min-width:600px) {
.wideScreenOnly {
display: inline;
}
.smallScreenOnly {
display: none;
}
}
2018-11-28 21:50:06 +01:00
#terminal {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 25px;
overflow: hidden;
cursor: text;
background-color: black;
color: white;
font-family: "Roboto Mono", monospace;
font-size: 16px;
}
#terminal * {
margin: 0;
}
#terminalOutput {
2018-11-29 01:02:09 +01:00
max-width: 100%;
overflow-wrap: break-word;
white-space: pre-wrap;
2018-11-28 21:50:06 +01:00
}
2018-11-29 00:56:58 +01:00
#terminalCurrent {
max-width: 100%;
}
2018-11-28 21:50:06 +01:00
#terminalCurrentPrefix {
2018-11-29 00:34:11 +01:00
display: inline-block;
2018-11-29 00:56:58 +01:00
vertical-align: top;
2018-11-28 21:50:06 +01:00
}
#terminalCurrentFocusInput {
2018-11-29 00:56:58 +01:00
display: inline-block;
2018-11-28 21:50:06 +01:00
margin: 0;
padding: 0;
2018-11-29 00:34:11 +01:00
min-width: 1px;
2018-11-29 00:56:58 +01:00
max-width: 100%;
overflow-wrap: break-word;
2018-11-28 21:50:06 +01:00
outline: none;
border: none;
background-color: inherit;
color: inherit;
font-family: inherit;
font-size: inherit;
}
#terminalCurrentFocusInput br {
display: none;
}