2020-02-20 06:32:06 -08:00
|
|
|
:root {
|
2022-05-03 23:27:27 -07:00
|
|
|
--width-target: calc(100vw / 6);
|
|
|
|
--height-target: calc(100vh / 3);
|
|
|
|
--size: min(var(--width-target), var(--height-target));
|
|
|
|
--margin-vertical: calc((100vh - var(--size) * 2) / 2);
|
|
|
|
--margin-horizontal: calc((100vw - var(--size) * 5) / 2);
|
2020-02-20 06:32:06 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
2022-05-03 23:27:27 -07:00
|
|
|
margin: 0;
|
2020-02-20 06:32:06 -08:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
background-color: black;
|
2022-05-03 23:27:27 -07:00
|
|
|
color: white;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
2022-05-05 13:55:50 -07:00
|
|
|
font-family: monospace;
|
2022-05-03 23:27:27 -07:00
|
|
|
font-size: var(--size);
|
|
|
|
line-height: var(--size);
|
2020-02-20 06:32:06 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2022-05-03 23:27:27 -07:00
|
|
|
color: white;
|
2020-02-20 06:32:06 -08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-05-03 23:27:27 -07:00
|
|
|
a:hover {
|
|
|
|
text-shadow: 0 0 5px #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: grid;
|
2020-02-20 06:32:06 -08:00
|
|
|
grid-template-columns: repeat(4, 1fr);
|
2023-10-16 20:07:09 -07:00
|
|
|
margin: var(--margin-vertical) var(--margin-horizontal);
|
2022-05-03 23:27:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
body > * {
|
|
|
|
width: var(--size);
|
2020-02-20 06:32:06 -08:00
|
|
|
}
|
|
|
|
|
2022-05-03 23:27:27 -07:00
|
|
|
body > div {
|
|
|
|
height: var(--size);
|
|
|
|
text-shadow: 0 0 5px #fff;
|
2020-02-20 06:32:06 -08:00
|
|
|
}
|
|
|
|
|
2022-12-15 13:35:18 -08:00
|
|
|
body > a:nth-child(n+5) {
|
2022-05-03 23:27:27 -07:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
font-size: calc(var(--size) / 9);
|
|
|
|
height: calc(var(--size) / 2);
|
|
|
|
justify-content: center;
|
|
|
|
line-height: calc(var(--size) / 9);
|
2020-02-20 06:32:06 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* just is an isogram */
|
2022-05-03 23:27:27 -07:00
|
|
|
#j:after { content: 'j'; }
|
2022-05-05 13:55:50 -07:00
|
|
|
#j:hover:after { content: ':'; }
|
2022-05-03 23:27:27 -07:00
|
|
|
#u:after { content: 'u'; }
|
2022-05-05 13:55:50 -07:00
|
|
|
#u:hover:after { content: '~'; }
|
2022-05-03 23:27:27 -07:00
|
|
|
#s:after { content: 's'; }
|
2022-05-05 13:55:50 -07:00
|
|
|
#s:hover:after { content: '$'; }
|
2022-05-03 23:27:27 -07:00
|
|
|
#t:after { content: 't'; }
|
2022-05-05 13:55:50 -07:00
|
|
|
#t:hover:after { content: '='; }
|