myco.systems/public/style.css
2024-01-29 22:14:50 -05:00

71 lines
1,022 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 !important;
}
body,
.braille {
display: flex;
align-items: center;
justify-content: flex-start;
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%;
}
.center-text {
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
left: 75%;
font-size: 14px;
font-family: Monaco, monospace;
direction: rtl;
text-align: right;
}
@media only screen and (max-width: 665px) {
.center-text {
top: 20%;
}
}
.center-text a {
color: #f3bbae;
transition: color 0.5s ease;
}
.center-text a:hover {
color: #ffffff;
}