/* =========================================================== * * 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
*/ } .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 { }