mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
4d682aa01d
Since Chrome on Mac OS doesn't show characters like U+1696, we need to add a font that has those characters as a fallback target.
19 lines
550 B
CSS
19 lines
550 B
CSS
.terminal {
|
|
font-family: "DejaVu Sans Mono", "Everson Mono", FreeMono, Menlo, Terminal, monospace, "Apple Symbols";
|
|
}
|
|
|
|
.xterm-overlay {
|
|
font-family: "DejaVu Sans Mono", "Everson Mono", FreeMono, Menlo, Terminal, monospace, "Apple Symbols";
|
|
border-radius: 15px;
|
|
font-size: xx-large;
|
|
color: black;
|
|
background: white;
|
|
opacity: 0.75;
|
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
user-select: none;
|
|
transition: opacity 180ms ease-in;
|
|
} |