myco.systems/public/style.css
2024-01-29 20:46:10 -05:00

49 lines
672 B
CSS
Executable file

@import url("//cdn.jsdelivr.net/gh/be5invis/Iosevka@ff81c66/fonts.css");
:root {
--size: calc(100vmin / 1.618033988749895);
}
html,
body {
width: 100%;
height: 100vh;
overflow: hidden;
}
body {
margin: 0;
background: #241917;
color: #f3bbae;
}
body,
.braille {
display: flex;
align-items: center;
justify-content: center;
flex-flow: row;
}
.braille {
max-width: 100%;
max-height: 100%;
width: var(--size);
height: var(--size);
font: 11px/12px "Iosevka Web", monospace;
}
.braille > * {
white-space: pre;
}
.braille .hidden {
position: fixed;
bottom: 100%;
right: 100%;
}
.visible {
display: fixed !important;
left: 2;
}