[
  {
    "path": ".gitignore",
    "content": ".DS_Store\ntest/"
  },
  {
    "path": "LICENSE.md",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Sam Herbert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "Example\n===========\nAll loaders may be previewed at:\n\nhttp://samherbert.net/svg-loaders\n\nNOTE: Chrome 45 intended to deprecate SMIL icons but has since [suspended](https://groups.google.com/a/chromium.org/g/blink-dev/c/5o0yiO440LM/m/mHtmsQxf2bIJ) that deprecation.\n\nUsage\n===========\n[Download](https://github.com/SamHerbert/SVG-Loaders/archive/master.zip) or `bower install svg-loaders`\n\n```html\n<img src=\"svg-loaders/puff.svg\" />\n```\n\nAn icon's color can be manipulated by changing the `fill` attribute in the SVG file.\n\n```\n<svg fill=\"#fff\" width=\"140\" height=\"64\" viewBox=\"0 0 140 64\" xmlns=\"http://www.w3.org/2000/svg\">\n```\n\nNote: Not all browsers support SVG, or more specifically, animated SVGs. Check (http://caniuse.com/#feat=svg-smil) to make sure you're good to go. If not, you may want to implement a fallback.\n\nMinify\n===========\nAll SVG files are fairly small in size, but you can make them even smaller by minifying with something like [SVGO](https://github.com/svg/svgo).\n\nAdaptations\n===========\n\n[React components by ajwann](https://github.com/ajwann/svg-loaders-react)\n\n"
  },
  {
    "path": "bower.json",
    "content": "{\n  \"name\": \"SVG-Loaders\",\n  \"homepage\": \"https://github.com/SamHerbert/SVG-Loaders\",\n  \"description\": \"Loading icons and small animations built purely in SVG, no CSS or JS.\",\n  \"license\": \"MIT\",\n  \"private\": false,\n  \"ignore\": [\n    \"**/.*\",\n    \"node_modules\",\n    \"bower_components\",\n    \"test\",\n    \"tests\",\n    \"site-assets\",\n    \"index.html\"\n  ],\n  \"keywords\": [\n    \"progress\",\n    \"svg\",\n    \"loaders\",\n    \"loading\",\n    \"spinners\",\n    \"animated\"\n  ]\n}\n"
  },
  {
    "path": "index.html",
    "content": "<!doctype html>\n\n<head>\n    <meta charset=\"utf-8\"/>\n    <title>SVG Loaders - Sam Herbert</title>\n    <link href='//fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>\n    <style>\n        html {\n            height: 100%;\n            background: #3023ae;\n            background: -moz-linear-gradient(-45deg,  #3023ae 0%, #c86dd7 100%);\n            background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#3023ae), color-stop(100%,#c86dd7));\n            background: -webkit-linear-gradient(-45deg,  #3023ae 0%,#c86dd7 100%);\n            background: -o-linear-gradient(-45deg,  #3023ae 0%,#c86dd7 100%);\n            background: -ms-linear-gradient(-45deg,  #3023ae 0%,#c86dd7 100%);\n            background: linear-gradient(135deg,  #3023ae 0%,#c86dd7 100%);\n            background-attachment: fixed;\n        }\n        body {\n            font-family: \"Open Sans\";\n            font-weight: 300;\n        }\n        a {\n            color: #fff;\n        }\n\n        ul {\n            background: #fff;\n            width: 720px;\n            margin: auto;\n            margin-top: 60px;\n            list-style: none;\n            padding: 0;\n            -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.37);\n            box-shadow:      0px 0px 4px 0px rgba(0,0,0,0.37);\n        }\n        ul li {\n            width: 180px;\n            height: 180px;\n            line-height: 176px;\n            text-align: center;\n            float: left;\n            background-repeat: no-repeat;\n            background-position: center;\n        }\n        ul li img {\n            vertical-align: middle;\n        }\n        li:nth-child(1) {\n            background-color: #1ABC9C;\n        }\n        li:nth-child(2) {\n            background-color: #34495E;\n        }\n        li:nth-child(3) {\n            background-color: #F39C12;\n        }\n        li:nth-child(4) {\n            background-color: #9B59B6;\n        }\n        li:nth-child(5) {\n            background-color: #3498DB;\n        }\n        li:nth-child(6) {\n            background-color: #E74C3C;\n        }\n        li:nth-child(7) {\n            background-color: #2ECC71;\n        }\n        li:nth-child(8) {\n            background-color: #2C3E50;\n        }\n        li:nth-child(9) {\n            background-color: #F1C40F;\n        }\n        li:nth-child(10) {\n            background-color: #8E44AD;\n        }\n        li:nth-child(11) {\n            background-color: #2980B9;\n        }\n        li:nth-child(12) {\n            background-color: #E74C3C;\n        }\n        .actions {\n            margin: auto;\n            margin-top: 45px;\n            width: 325px;\n        }\n        .actions a {\n            width: 150px;\n            height: 46px;\n            background-repeat: no-repeat;\n            background-size: 150px 46px;\n            display: block;\n            text-indent: -9999px;\n            float: left;\n        }\n\n        a.download {\n            background-image: url(site-assets/images/download-btn.png);\n        }\n        a.tweet {\n            background-image: url(site-assets/images/tweet-btn.png);\n            margin-left: 25px;\n        }\n\n        .attr {\n            color: #fff;\n            text-align: center;\n            font-size: 0.875rem;\n            margin-top: 20px;\n        }\n\n    </style>\n</head>\n\n<body>\n    <ul>\n        <li>\n            <img src=\"svg-loaders/audio.svg\" width=\"40\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/rings.svg\" width=\"60\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/grid.svg\" width=\"40\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/hearts.svg\" width=\"80\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/oval.svg\" width=\"50\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/three-dots.svg\" width=\"60\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/spinning-circles.svg\" width=\"50\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/puff.svg\" width=\"50\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/circles.svg\" width=\"50\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/tail-spin.svg\" width=\"50\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/bars.svg\" width=\"40\" alt=\"\">\n        </li>\n        <li>\n            <img src=\"svg-loaders/ball-triangle.svg\" width=\"50\" alt=\"\">\n        </li>\n        <div style=\"clear: both\"></div>\n    </ul>\n\n    <div class=\"actions\">\n        <a href=\"https://github.com/SamHerbert/SVG-Loaders\" target=\"_blank\" class=\"download\">Download</a>\n        <a href=\"https://twitter.com/intent/tweet?text=Pure%20SVG%20loaders/spinners&url=http://goo.gl/nuy8tM&via=sherb\" target=\"_blank\" class=\"tweet\">Tweet</a>\n    </div>\n    <div style=\"clear: both\"></div>\n\n    <div class=\"attr\">\n        Made by <a href=\"http://twitter.com/sherb\">Sam</a>. For everyone.\n    </div>\n\n    <script>\n      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n      ga('create', 'UA-56980351-1', 'auto');\n      ga('send', 'pageview');\n    </script>\n</body>\n\n</html>\n"
  }
]