Microfiche font
- Dominant language
- HTML
- Stars
- 20.5k
- Forks
- 2.9k
- Avg merge
- 1d 21h
- Merged PRs (30d)
- 95
Description
Request: A font where all non-space characters are small identically-sized black rectangles.
At `font-size: 2px` each non-space character is be 2px high by 1px wide. No spacing between characters. Space characters would also be 1px wide x 2px high.
Ellipsis could be done in such a way as to depict a frayed edge or vertically-centered square (useful for `text-overflow: ellipsis`).
Can't find anything like it on the internet. Maybe something google could create? Or the person who posted #1833 ? :)
### Use case 1: Document minimaps (like [atom minimap](https://atom.io/packages/minimap))

### Use case 2: Media breakpoints
For example, to microfiche an article preview text on small screens:
```css
@media (min-width: 200px) {
article .preview-text { font-family: 'microfiche', sans-serif; font-size: 2px; line-height: 1em; }
}
```
Contributor guide
Assessment
This issue has not been assessed yet.