frontpage/styles/REPL/REPLHistory.module.css

32 lines
580 B
CSS
Raw Normal View History

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 {
color: inherit;
text-decoration: underline;
}
.line a::after {
content: "⤤";
color: var(--repl-color);
font-size: 80%;
text-decoration: none;
}
.line .cmd {
cursor: pointer;
text-decoration: underline;
2021-12-16 00:21:14 +01:00
}