site/www/css/ppty.css
2026-02-03 22:20:31 +10:00

44 lines
860 B
CSS

/* =========================================================== *
* Pseudo-Pseudo-Terminal Effect *
/* =========================================================== */
.ppty {
/* display: block; */
/* flex-direction: column; */
/* justify-content: start; */
/* align-content: center; */
/* align-items: start; */
overflow: hidden;
font-family: monospace;
font-weight: bold;
}
.ppty-block {
color: var(--theme-tty-output);
visibility: hidden;
white-space: nowrap; /* only break on <br/> */
}
.ppty-prompt {
color: var(--theme-tty-prompt);
display: inline-block;
vertical-align: top;
}
.ppty-command {
color: var(--theme-tty-command);
width: 0px;
border-right: 1ch solid var(--theme-tty-output);
display: inline-block;
vertical-align: top;
overflow: hidden;
}
.ppty-output {
}