├── .gitignore ├── site.css └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs -------------------------------------------------------------------------------- /site.css: -------------------------------------------------------------------------------- 1 | body { 2 | max-width: 520px; 3 | margin: 1em auto; 4 | font-size: 16px; 5 | font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 6 | } 7 | 8 | legend { 9 | font-weight: bold; 10 | } 11 | 12 | label { 13 | display: block; 14 | margin: .5em; 15 | } 16 | 17 | label span { 18 | display: inline-block; 19 | width: 150px; 20 | } 21 | 22 | label input { 23 | width: 300px; 24 | font: inherit; 25 | } 26 | 27 | a { 28 | display: inline-block; 29 | margin: 1em 0; 30 | } 31 | 32 | button:disabled { 33 | opacity: .2; 34 | } 35 | 36 | pre { 37 | white-space: pre-wrap; 38 | } 39 | 40 | footer { 41 | margin-top: 3em; 42 | text-align: center; 43 | } 44 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Url:
42 | 43 |Markdown:
44 | 45 | 46 | 49 | 50 | 75 | 76 | --------------------------------------------------------------------------------