2021-12-16 00:21:14 +01:00
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
2021-12-21 00:14:40 +01:00
|
|
|
flex-shrink: 2;
|
2021-12-16 01:03:54 +01:00
|
|
|
font-size: 1.25rem;
|
|
|
|
font-family: "CascadiaCode", monospace;
|
2021-12-16 00:21:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.line {
|
2021-12-16 01:03:54 +01:00
|
|
|
padding: 3px 0;
|
2021-12-17 18:55:00 +01:00
|
|
|
white-space: pre-wrap;
|
|
|
|
font-family: inherit;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
2021-12-26 15:37:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.line a:link, .line a:visited, .line a:hover, .line a:active {
|
2021-12-26 16:58:39 +01:00
|
|
|
color: var(--repl-color-link);
|
2021-12-26 15:37:08 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line a::after {
|
|
|
|
content: "⤤";
|
2021-12-26 16:58:39 +01:00
|
|
|
color: var(--repl-color-link);
|
2021-12-26 15:37:08 +01:00
|
|
|
font-size: 80%;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line .cmd {
|
|
|
|
cursor: pointer;
|
2021-12-26 16:17:40 +01:00
|
|
|
text-decoration: underline dotted;
|
2021-12-26 16:58:39 +01:00
|
|
|
color: var(--repl-color-link);
|
2021-12-26 16:17:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.line .cmd::before {content: "'"}
|
|
|
|
.line .cmd::after {content: "'"}
|