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

117 lines
1.6 KiB
CSS
Raw Normal View History

a {
text-decoration: none;
}
2019-04-08 22:42:11 +02:00
a:link, a:visited {
color: #00FF00;
}
a:hover {
color: #00BF00;
2019-07-09 21:18:06 +02:00
text-decoration: underline;
2018-11-28 21:50:06 +01:00
}
2019-04-08 22:42:11 +02:00
a:link.dirLink, a:visited.dirLink {
color: #00FF00;
}
2018-11-28 21:50:06 +01:00
2019-04-08 22:42:11 +02:00
a:link.fileLink, a:visited.fileLink {
color: #FFFF00;
}
2018-11-28 21:50:06 +01:00
2018-12-05 17:17:57 +01:00
@media (max-width: 600px) {
2018-11-29 00:56:58 +01:00
.wideScreenOnly {
display: none;
}
.smallScreenOnly {
display: inline;
}
}
2018-12-05 17:17:57 +01:00
@media (min-width: 600px) {
2018-11-29 00:56:58 +01:00
.wideScreenOnly {
display: inline;
}
.smallScreenOnly {
display: none;
}
}
2018-12-05 17:16:03 +01:00
* {
box-sizing: border-box;
}
2018-12-05 16:22:54 +01:00
body {
background-color: black;
}
2018-11-28 21:50:06 +01:00
#terminal {
position: absolute;
right: 0;
bottom: 0;
left: 0;
2018-12-05 17:16:03 +01:00
2018-12-05 17:17:57 +01:00
min-height: 100%;
2018-12-05 17:16:03 +01:00
padding: 25px;
2018-11-28 21:50:06 +01:00
overflow: hidden;
cursor: text;
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-12-05 13:41:36 +01:00
min-height: 2em;
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;
}
2018-11-29 16:19:50 +01:00
.terminalCurrentFocusInputHidden {
max-width: 1px !important;
overflow: hidden !important;
overflow-wrap: normal !important;
}