{"version":3,"sources":["/Users/smithm/dev/bless/test/fixtures/input/at-rules.css"],"names":[],"mappings":"AAAA;;AAAkB;;AAElB;;AACA;;AAEA;;AACA;;AAA8C;;AAE9C;;AAAgD;;AAEhD;;AACA;;;;AAIE;IACE;;;;AAIJ;;;;AAIA;;AACA;AACE;IACE;;;;AAIJ;AACE;IACE;;;;AAIJ;;AACA;;;;;AAKE;IACE;;;;AAIJ;;AACA;EACE;;;AAGF;;AACA;EACE;EACA;;;;AAIF;;AACA;EACE;IACE;;;EAGF;IACE;;;;AAIJ;;AACA;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;;AACA;EACE;EACA;EACA;;;AAGF;EACG","sourcesContent":["@charset \"UTF-8\"; /* Test @charset, Test @charset as first line */\n\n/* Test @import */\n@import 'global.css';\n\n/* Test @namespace */\n@namespace url(http://www.w3.org/1999/xhtml); /* Namespace for XHTML */\n\n@namespace svg url(http://www.w3.org/2000/svg); /* Namespace for SVG embedded in XHTML */\n\n/* Test @media */\n@media only screen\n  and (min-device-width: 320px)\n  and (max-device-width: 480px)\n  and (-webkit-min-device-pixel-ratio: 2) {\n  .module {\n    width: 100%;\n  }\n}\n\n@media print {\n\n}\n\n/* Test @supports */\n@supports (display: flex) {\n  .module {\n    display: flex;\n  }\n}\n\n@supports (display: flex) and (-webkit-appearance: checkbox) {\n  .module {\n    display: flex;\n  }\n}\n\n/* Test @document */\n@document /* Rules for a specific page */\n  url(http://css-tricks.com/),\n  url-prefix(http://css-tricks.com/snippets/),\n  domain(css-tricks.com),\n  regexp(\"https:.*\")  {\n  body {\n    font-family: Comic Sans;\n  }\n}\n\n/* Test @page */\n@page :first {\n  margin: 1in;\n}\n\n/* Test @font-face */\n@font-face {\n  font-family: 'MyWebFont';\n  src: url('myfont.woff2') format('woff2'),\n        url('myfont.woff') format('woff');\n}\n\n/* Test @keyframes */\n@keyframes pulse {\n  0% {\n    background-color: #001f3f;\n  }\n\n  100% {\n    background-color: #ff4136;\n  }\n}\n\n/* Test @viewport */\n@viewport {\n  min-width: 640px;\n  max-width: 800px;\n}\n\n@viewport {\n  zoom: 0.75;\n  min-zoom: 0.5;\n  max-zoom: 0.9;\n}\n\n@viewport {\n  orientation: landscape;\n}\n\n/* Test @counter-style */\n@counter-style circled-alpha {\n  system: fixed;\n  symbols: Ⓐ Ⓑ Ⓒ Ⓓ Ⓔ Ⓕ Ⓖ Ⓗ Ⓘ Ⓙ Ⓚ Ⓛ Ⓜ Ⓝ Ⓞ Ⓟ Ⓠ Ⓡ Ⓢ Ⓣ Ⓤ Ⓥ Ⓦ Ⓧ Ⓨ Ⓩ;\n  suffix: \" \";\n}\n\n.items {\n   list-style: circled-alpha;\n}"]}