├── public ├── favicon.ico ├── css │ └── style.css ├── index.html └── js │ └── app.js ├── app.js └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notchris/decent-patterns/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | let express = require('express') 2 | let app = express() 3 | let path = require('path'); 4 | 5 | app.use(express.static(__dirname + '/public')) 6 | 7 | app.listen(5000, function() { 8 | console.log('Running on port 5000') 9 | }); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Decent Patterns 2 | 3 | Really simple SVG Patterns using single unicode characters. 4 | 5 | ## Patterns 6 | 7 | You can view all of the patterns with their generated SVG snippets on: 8 | 9 | https://notchr.is/patterns/ 10 | -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | text-rendering: optimizeLegibility; 4 | -webkit-font-smoothing: antialiased; 5 | -moz-osx-font-smoothing: grayscale; 6 | font-kerning: auto; 7 | } 8 | 9 | html { 10 | font-family: sans-serif; 11 | -webkit-text-size-adjust: 100%; 12 | } 13 | 14 | body,html { 15 | margin: 0; 16 | width:100%; 17 | height:100%; 18 | } 19 | 20 | #app { 21 | width:100%; 22 | height:100%; 23 | } 24 | 25 | div.pattern { 26 | width:100%; 27 | height:100%; 28 | min-height:200px; 29 | max-height:300px; 30 | overflow:hidden; 31 | } 32 | 33 | div.pattern:hover div.title { 34 | display:block; 35 | } -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Really simple SVG Patterns using single unicode characters. These are free to use anywhere your heart desires as long as your heart doesn't desire evil.
20 |