NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
| /*! normalize-all-you-really-need-tho.css v1.0.0 | MIT License */ | |
| html { | |
| font-family: sans-serif; /* 1 */ | |
| -webkit-text-size-adjust: 100%; /* 2 */ | |
| -ms-text-size-adjust: 100%; /* 2 */ | |
| } | |
| body { | |
| margin: 0; |
| /** | |
| * Simple node.js style script loader for modern browsers | |
| **/ | |
| function loadScript(src, cb) { | |
| var script = document.createElement('script'); | |
| script.async = true; | |
| script.src = src; | |
| script.onerror = function() { | |
| cb(new Error("Failed to load" + src)); |