intermodal/www/index.css
Casey Rodarmor e91b419af5
Improve book
- Write introduction
- Move large readme sections into book
- Rename docs to www

type: documentation
2020-04-07 19:01:30 -07:00

64 lines
1.7 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

:root {
--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);
}
* {
margin: 0;
padding: 0;
}
html {
background-color: black;
color: white;
font-family: sans-serif;
font-size: var(--size);
line-height: var(--size);
overflow: hidden;
text-align: center;
}
a {
color: white;
text-decoration: none;
}
#intermodal {
display: grid;
grid-template-columns: repeat(5, 1fr);
margin-bottom: var(--margin-vertical);
margin-left: var(--margin-horizontal);
margin-right: var(--margin-horizontal);
margin-top: var(--margin-vertical);
}
#intermodal > * {
height: var(--size);
width: var(--size);
}
/* intermodal is an isogram */
#i:after { content: 'I'; }
#i:hover:after { content: '私'; }
#n:after { content: 'N'; }
#n:hover:after { content: '∅'; }
#t:after { content: 'T'; }
#t:hover:after { content: '࿈'; }
#e:after { content: 'E'; }
#e:hover:after { content: 'Ə'; }
#r:after { content: 'R'; }
#r:hover:after { content: ''; }
#m:after { content: 'M'; }
#m:hover:after { content: '☾'; }
#o:after { content: 'O'; }
#o:hover:after { content: 'ꙮ'; }
#d:after { content: 'D'; }
#d:hover:after { content: '↓'; }
#a:after { content: 'A'; }
#a:hover:after { content: 'א'; }
#l:after { content: 'L'; }
#l:hover:after { content: 'し'; }