Last active
November 23, 2017 03:06
-
-
Save jebbles/8296fe71ef87831d7ee820f4e9ef5e43 to your computer and use it in GitHub Desktop.
Turn your UI markup into a wireframe with a few lines of CSS. For people who prefer to skip visual wireframing entirely and use code to iterate on product development. Reduces assumptions from stakeholders and keeps the focus on usability rather than aesthetics.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
filter: saturate(0%) !important; | |
} | |
* { | |
font-family: 'Comic Sans MS' !important; | |
border-color: black !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Turns this:

Into this:

It's not perfect but it gets the job done. :)