[
  {
    "path": ".eslintrc",
    "content": "{\n    \"extends\": [\n        \"plugin:@wordpress/eslint-plugin/esnext\"\n    ],\n    \"env\": {\n        \"browser\": true\n    }\n}\n"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "Thanks for contributing to `_s` (Underscores) — you rock!\n\n## Maintainers\n\n`_s` is maintained by the [Automattic Theme Team](https://themeshaper.com/about/).\n\n## Reporting issues\n\nBefore submitting your issue, make sure it has not been discussed earlier. You can search for existing tickets [here](https://github.com/Automattic/_s/search).\n\nHere are some tips to consider and to help you write a great report:\n\n* `_s` supports Microsoft Internet Explorer 11 and Edge, as well as the latest two versions of all other major browsers.\n* `_s` is backwards compatible with the two versions prior to the current stable version of WordPress.\n* `_s` uses HTML5 markup.\n* We decided not to include translations [[#50](https://github.com/Automattic/_s/pull/50)] beyond the existing `_s.pot` file, a RTL stylesheet [[#263](https://github.com/Automattic/_s/pull/263)], or editor styles [[#225](https://github.com/Automattic/_s/pull/225)], as they are likely to change during development of an `_s` based theme.\n\n## Sending a Pull Request\n\nFound a bug you can fix? Fantastic! Patches are always welcome. Here's a few tips for crafting a great pull request:\n\n* Include the purpose of your PR. Be explicit about the issue your PR solves.\n* Reference any existing issues that relate to your PR. This allows everyone to easily see all related discussions.\n* `_s` complies with the [WordPress Coding Standards](https://make.wordpress.org/core/handbook/best-practices/coding-standards/) and any PR should comply as well.\n\n### Before submitting a pull request, please make sure the following is done:\n\n1. Fork the repo and create your branch from master.\n2. Run `npm install` and `composer install`.\n3. When submitting a change that affects SCSS sources, please make sure there is no linting errors using `npm run lint:scss`, then generate the css files using `npm run compile:css` and `npm run compile:rtl`.\n4. When submitting a change that affects PHP files, please make sure there is no syntax or linting errors by running `composer lint:php` then `composer lint:wpcs`.\n5. When submitting a change that affects JS files, please make sure there is no linting errors by running `npm run lint:js`.\n6. When submitting a change that affects text strings, make sure to regenerate the POT file by running `composer make-pot`.\n\nBy contributing code to `_s`, you grant its use under the [GNU General Public License v2 (or later)](LICENSE).\n\n## Underscores.me\n\nIf your issue is specific to the [Underscores.me](https://underscores.me) website, the [Underscores.me GitHub repo](https://github.com/Automattic/underscores.me) is the right place for you.\n\nThe preferred method of generating a new theme based on `_s` is the [Underscores.me](https://underscores.me) website. If you have an alternative method, such as a shell script, write a blog post about it or host it in a separate repo -- and make sure to mention [@underscoresme](https://twitter.com/underscoresme) in your tweets!\n\nWant to have your avatar listed as one of the `_s` contributors [here](https://underscores.me/#contribute)? Just make sure you have an email address added to both GitHub and your local Git installation."
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "<!-- Thanks for contributing to Underscores! Please provide as much information as possible with your Pull Request by filling out the following - this helps make reviewing much quicker! -->\n\n#### Changes proposed in this Pull Request:\n\n\n#### Related issue(s):"
  },
  {
    "path": ".github/workflows/lint-css.yml",
    "content": "name: CSS Code Linting\n\non:\n  pull_request:\n    branches:\n      - master\n  push:\n    branches:\n      - master\n\njobs:\n  lint-css:\n    name: Lint CSS\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout the git repository\n        uses: actions/checkout@v2\n      - name: Setup Node.js\n        uses: actions/setup-node@v1\n      - name: npm install\n        run: npm install\n      - name: Lint CSS\n        run: npm run lint:scss\n"
  },
  {
    "path": ".github/workflows/lint-js.yml",
    "content": "name: JS Code Linting\n\non:\n  pull_request:\n    branches:\n      - master\n  push:\n    branches:\n      - master\n\njobs:\n  lint-js:\n    name: Lint JS\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout the git repository\n        uses: actions/checkout@v2\n      - name: Setup Node.js\n        uses: actions/setup-node@v1\n      - name: npm install\n        run: npm install\n      - name: Lint JS\n        run: npm run lint:js"
  },
  {
    "path": ".github/workflows/lint-php.yml",
    "content": "name: PHP Code Linting\n\non:\n  pull_request:\n    branches:\n      - master\n  push:\n    branches:\n      - master\n\njobs:\n  lint-php:\n    name: Parallel lint\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout the git repository\n        uses: actions/checkout@v2\n      - name: PHP setup\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: 7.4\n      - name: Install composer packages\n        run: composer install --no-progress\n      - name: Check for PHP errors\n        run: composer lint:php\n\n  phpcs_check:\n    name: PHPCS check\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout the git repository\n        uses: actions/checkout@v2\n      - name: PHP setup\n        uses: shivammathur/setup-php@v2\n        with:\n          php-version: 7.4\n      - name: Install composer packages\n        run: composer install --no-progress\n      - name: Check coding standards using PHPCS\n        run: composer lint:wpcs"
  },
  {
    "path": ".gitignore",
    "content": "/node_modules\n/vendor\npackage-lock.json\ncomposer.lock\nstyle.css.map\n.DS_Store"
  },
  {
    "path": ".stylelintrc.json",
    "content": "{\n    \"extends\": [\n        \"@wordpress/stylelint-config/scss\"\n    ],\n    \"ignoreFiles\": [\n        \"sass/_normalize.scss\"\n    ],\n    \"rules\": {\n        \"font-family-no-missing-generic-family-keyword\": null,\n        \"no-descending-specificity\": null,\n        \"block-no-empty\": null,\n        \"no-duplicate-selectors\": null,\n        \"font-family-no-duplicate-names\": null,\n        \"selector-class-pattern\": null\n    }\n}\n"
  },
  {
    "path": "404.php",
    "content": "<?php\n/**\n * The template for displaying 404 pages (not found)\n *\n * @link https://codex.wordpress.org/Creating_an_Error_404_Page\n *\n * @package _s\n */\n\nget_header();\n?>\n\n\t<main id=\"primary\" class=\"site-main\">\n\n\t\t<section class=\"error-404 not-found\">\n\t\t\t<header class=\"page-header\">\n\t\t\t\t<h1 class=\"page-title\"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', '_s' ); ?></h1>\n\t\t\t</header><!-- .page-header -->\n\n\t\t\t<div class=\"page-content\">\n\t\t\t\t<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', '_s' ); ?></p>\n\n\t\t\t\t\t<?php\n\t\t\t\t\tget_search_form();\n\n\t\t\t\t\tthe_widget( 'WP_Widget_Recent_Posts' );\n\t\t\t\t\t?>\n\n\t\t\t\t\t<div class=\"widget widget_categories\">\n\t\t\t\t\t\t<h2 class=\"widget-title\"><?php esc_html_e( 'Most Used Categories', '_s' ); ?></h2>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\twp_list_categories(\n\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t'orderby'    => 'count',\n\t\t\t\t\t\t\t\t\t'order'      => 'DESC',\n\t\t\t\t\t\t\t\t\t'show_count' => 1,\n\t\t\t\t\t\t\t\t\t'title_li'   => '',\n\t\t\t\t\t\t\t\t\t'number'     => 10,\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div><!-- .widget -->\n\n\t\t\t\t\t<?php\n\t\t\t\t\t/* translators: %1$s: smiley */\n\t\t\t\t\t$_s_archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', '_s' ), convert_smilies( ':)' ) ) . '</p>';\n\t\t\t\t\tthe_widget( 'WP_Widget_Archives', 'dropdown=1', \"after_title=</h2>$_s_archive_content\" );\n\n\t\t\t\t\tthe_widget( 'WP_Widget_Tag_Cloud' );\n\t\t\t\t\t?>\n\n\t\t\t</div><!-- .page-content -->\n\t\t</section><!-- .error-404 -->\n\n\t</main><!-- #main -->\n\n<?php\nget_footer();\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The licenses for most software are designed to take away your\nfreedom to share and change it.  By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users.  This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it.  (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.)  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n  To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have.  You must make sure that they, too, receive or can get the\nsource code.  And you must show them these terms so they know their\nrights.\n\n  We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n  Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware.  If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n  Finally, any free program is threatened constantly by software\npatents.  We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary.  To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                    GNU GENERAL PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License.  The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage.  (Hereinafter, translation is included without limitation in\nthe term \"modification\".)  Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.  The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n  1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n  2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n    a) You must cause the modified files to carry prominent notices\n    stating that you changed the files and the date of any change.\n\n    b) You must cause any work that you distribute or publish, that in\n    whole or in part contains or is derived from the Program or any\n    part thereof, to be licensed as a whole at no charge to all third\n    parties under the terms of this License.\n\n    c) If the modified program normally reads commands interactively\n    when run, you must cause it, when started running for such\n    interactive use in the most ordinary way, to print or display an\n    announcement including an appropriate copyright notice and a\n    notice that there is no warranty (or else, saying that you provide\n    a warranty) and that users may redistribute the program under\n    these conditions, and telling the user how to view a copy of this\n    License.  (Exception: if the Program itself is interactive but\n    does not normally print such an announcement, your work based on\n    the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole.  If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works.  But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n  3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n    a) Accompany it with the complete corresponding machine-readable\n    source code, which must be distributed under the terms of Sections\n    1 and 2 above on a medium customarily used for software interchange; or,\n\n    b) Accompany it with a written offer, valid for at least three\n    years, to give any third party, for a charge no more than your\n    cost of physically performing source distribution, a complete\n    machine-readable copy of the corresponding source code, to be\n    distributed under the terms of Sections 1 and 2 above on a medium\n    customarily used for software interchange; or,\n\n    c) Accompany it with the information you received as to the offer\n    to distribute corresponding source code.  (This alternative is\n    allowed only for noncommercial distribution and only if you\n    received the program in object code or executable form with such\n    an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it.  For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable.  However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n  4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License.  Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n  5. You are not required to accept this License, since you have not\nsigned it.  However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works.  These actions are\nprohibited by law if you do not accept this License.  Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n  6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions.  You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n  7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all.  For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices.  Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n  8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded.  In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n  9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number.  If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation.  If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n  10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission.  For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this.  Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n                            NO WARRANTY\n\n  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    {description}\n    Copyright (C) {year}  {fullname}\n\n    This program is free software; you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation; either version 2 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License along\n    with this program; if not, write to the Free Software Foundation, Inc.,\n    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n    Gnomovision version 69, Copyright (C) year name of author\n    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary.  Here is a sample; alter the names:\n\n  Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n  `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n  {signature of Ty Coon}, 1 April 1989\n  Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs.  If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.\n"
  },
  {
    "path": "README.md",
    "content": "[![Build Status](https://travis-ci.org/Automattic/_s.svg?branch=master)](https://travis-ci.org/Automattic/_s)\n\nInactive project\n===\nUpdate: September 5, 2025\n\nAs we’re all-in now on Block Themes (since 2020 or so), we won’t be actively updating this _s starter theme (Underscores). This repo will be archived for reference only.\n\nTo learn more about Block Themes, visit [Block Themes](https://themeshaper.com/block-themes/) and follow the resources listed there.\n\n_s\n===\n\nHi. I'm a starter theme called `_s`, or `underscores`, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\n\nMy ultra-minimal CSS might make me look like theme tartare but that means less stuff to get in your way when you're designing your awesome theme. Here are some of the other more interesting things you'll find here:\n\n* A modern workflow with a pre-made command-line interface to turn your project into a more pleasant experience.\n* A just right amount of lean, well-commented, modern, HTML5 templates.\n* A custom header implementation in `inc/custom-header.php`. Just add the code snippet found in the comments of `inc/custom-header.php` to your `header.php` template.\n* Custom template tags in `inc/template-tags.php` that keep your templates clean and neat and prevent code duplication.\n* Some small tweaks in `inc/template-functions.php` that can improve your theming experience.\n* A script at `js/navigation.js` that makes your menu a toggled dropdown on small screens (like your phone), ready for CSS artistry. It's enqueued in `functions.php`.\n* 2 sample layouts in `sass/layouts/` made using CSS Grid for a sidebar on either side of your content. Just uncomment the layout of your choice in `sass/style.scss`.\nNote: `.no-sidebar` styles are automatically loaded.\n* Smartly organized starter CSS in `style.css` that will help you to quickly get your design off the ground.\n* Full support for `WooCommerce plugin` integration with hooks in `inc/woocommerce.php`, styling override woocommerce.css with product gallery features (zoom, swipe, lightbox) enabled.\n* Licensed under GPLv2 or later. :) Use it to make something cool.\n\nInstallation\n---------------\n\n### Requirements\n\n`_s` requires the following dependencies:\n\n- [Node.js](https://nodejs.org/)\n- [Composer](https://getcomposer.org/)\n\n### Quick Start\n\nClone or download this repository, change its name to something else (like, say, `megatherium-is-awesome`), and then you'll need to do a six-step find and replace on the name in all the templates.\n\n1. Search for `'_s'` (inside single quotations) to capture the text domain and replace with: `'megatherium-is-awesome'`.\n2. Search for `_s_` to capture all the functions names and replace with: `megatherium_is_awesome_`.\n3. Search for `Text Domain: _s` in `style.css` and replace with: `Text Domain: megatherium-is-awesome`.\n4. Search for <code>&nbsp;_s</code> (with a space before it) to capture DocBlocks and replace with: <code>&nbsp;Megatherium_is_Awesome</code>.\n5. Search for `_s-` to capture prefixed handles and replace with: `megatherium-is-awesome-`.\n6. Search for `_S_` (in uppercase) to capture constants and replace with: `MEGATHERIUM_IS_AWESOME_`.\n\nThen, update the stylesheet header in `style.css`, the links in `footer.php` with your own information and rename `_s.pot` from `languages` folder to use the theme's slug. Next, update or delete this readme.\n\n### Setup\n\nTo start using all the tools that come with `_s`  you need to install the necessary Node.js and Composer dependencies :\n\n```sh\n$ composer install\n$ npm install\n```\n\n### Available CLI commands\n\n`_s` comes packed with CLI commands tailored for WordPress theme development :\n\n- `composer lint:wpcs` : checks all PHP files against [PHP Coding Standards](https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/).\n- `composer lint:php` : checks all PHP files for syntax errors.\n- `composer make-pot` : generates a .pot file in the `languages/` directory.\n- `npm run compile:css` : compiles SASS files to css.\n- `npm run compile:rtl` : generates an RTL stylesheet.\n- `npm run watch` : watches all SASS files and recompiles them to css when they change.\n- `npm run lint:scss` : checks all SASS files against [CSS Coding Standards](https://developer.wordpress.org/coding-standards/wordpress-coding-standards/css/).\n- `npm run lint:js` : checks all JavaScript files against [JavaScript Coding Standards](https://developer.wordpress.org/coding-standards/wordpress-coding-standards/javascript/).\n- `npm run bundle` : generates a .zip archive for distribution, excluding development and system files.\n\nNow you're ready to go! The next step is easy to say, but harder to do: make an awesome WordPress theme. :)\n\nGood luck!\n"
  },
  {
    "path": "archive.php",
    "content": "<?php\n/**\n * The template for displaying archive pages\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\nget_header();\n?>\n\n\t<main id=\"primary\" class=\"site-main\">\n\n\t\t<?php if ( have_posts() ) : ?>\n\n\t\t\t<header class=\"page-header\">\n\t\t\t\t<?php\n\t\t\t\tthe_archive_title( '<h1 class=\"page-title\">', '</h1>' );\n\t\t\t\tthe_archive_description( '<div class=\"archive-description\">', '</div>' );\n\t\t\t\t?>\n\t\t\t</header><!-- .page-header -->\n\n\t\t\t<?php\n\t\t\t/* Start the Loop */\n\t\t\twhile ( have_posts() ) :\n\t\t\t\tthe_post();\n\n\t\t\t\t/*\n\t\t\t\t * Include the Post-Type-specific template for the content.\n\t\t\t\t * If you want to override this in a child theme, then include a file\n\t\t\t\t * called content-___.php (where ___ is the Post Type name) and that will be used instead.\n\t\t\t\t */\n\t\t\t\tget_template_part( 'template-parts/content', get_post_type() );\n\n\t\t\tendwhile;\n\n\t\t\tthe_posts_navigation();\n\n\t\telse :\n\n\t\t\tget_template_part( 'template-parts/content', 'none' );\n\n\t\tendif;\n\t\t?>\n\n\t</main><!-- #main -->\n\n<?php\nget_sidebar();\nget_footer();\n"
  },
  {
    "path": "comments.php",
    "content": "<?php\n/**\n * The template for displaying comments\n *\n * This is the template that displays the area of the page that contains both the current comments\n * and the comment form.\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\n/*\n * If the current post is protected by a password and\n * the visitor has not yet entered the password we will\n * return early without loading the comments.\n */\nif ( post_password_required() ) {\n\treturn;\n}\n?>\n\n<div id=\"comments\" class=\"comments-area\">\n\n\t<?php\n\t// You can start editing here -- including this comment!\n\tif ( have_comments() ) :\n\t\t?>\n\t\t<h2 class=\"comments-title\">\n\t\t\t<?php\n\t\t\t$_s_comment_count = get_comments_number();\n\t\t\tif ( '1' === $_s_comment_count ) {\n\t\t\t\tprintf(\n\t\t\t\t\t/* translators: 1: title. */\n\t\t\t\t\tesc_html__( 'One thought on &ldquo;%1$s&rdquo;', '_s' ),\n\t\t\t\t\t'<span>' . wp_kses_post( get_the_title() ) . '</span>'\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tprintf( \n\t\t\t\t\t/* translators: 1: comment count number, 2: title. */\n\t\t\t\t\tesc_html( _nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', $_s_comment_count, 'comments title', '_s' ) ),\n\t\t\t\t\tnumber_format_i18n( $_s_comment_count ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n\t\t\t\t\t'<span>' . wp_kses_post( get_the_title() ) . '</span>'\n\t\t\t\t);\n\t\t\t}\n\t\t\t?>\n\t\t</h2><!-- .comments-title -->\n\n\t\t<?php the_comments_navigation(); ?>\n\n\t\t<ol class=\"comment-list\">\n\t\t\t<?php\n\t\t\twp_list_comments(\n\t\t\t\tarray(\n\t\t\t\t\t'style'      => 'ol',\n\t\t\t\t\t'short_ping' => true,\n\t\t\t\t)\n\t\t\t);\n\t\t\t?>\n\t\t</ol><!-- .comment-list -->\n\n\t\t<?php\n\t\tthe_comments_navigation();\n\n\t\t// If comments are closed and there are comments, let's leave a little note, shall we?\n\t\tif ( ! comments_open() ) :\n\t\t\t?>\n\t\t\t<p class=\"no-comments\"><?php esc_html_e( 'Comments are closed.', '_s' ); ?></p>\n\t\t\t<?php\n\t\tendif;\n\n\tendif; // Check for have_comments().\n\n\tcomment_form();\n\t?>\n\n</div><!-- #comments -->\n"
  },
  {
    "path": "composer.json",
    "content": "{\n    \"name\": \"automattic/underscores\",\n    \"type\": \"wordpress-theme\",\n    \"description\": \"Hi. I'm a starter theme called _s, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\",\n    \"keywords\": [\n        \"WordPress\",\n        \"Themes\"\n    ],\n    \"homepage\": \"https://github.com/Automattic/_s\",\n    \"license\": \"GPL-2.0-or-later\",\n    \"authors\": [\n        {\n            \"name\": \"Contributors\",\n            \"homepage\": \"https://github.com/Automattic/_s/graphs/contributors\"\n        }\n    ],\n    \"require\": {\n        \"php\": \">=5.6\"\n    },\n    \"require-dev\": {\n        \"dealerdirect/phpcodesniffer-composer-installer\": \"^0.7.0\",\n        \"wptrt/wpthemereview\": \"^0.2.1\",\n        \"php-parallel-lint/php-parallel-lint\": \"^1.2.0\",\n        \"wp-cli/i18n-command\": \"^2.2.5\"\n    },\n    \"scripts\": {\n        \"lint:wpcs\": \"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs\",\n        \"lint:php\": \"@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor .\",\n        \"make-pot\": \"wp i18n make-pot . languages/_s.pot\"\n    },\n    \"support\": {\n        \"issues\": \"https://github.com/Automattic/_s/issues\",\n        \"source\": \"https://github.com/Automattic/_s\"\n    }\n}\n"
  },
  {
    "path": "footer.php",
    "content": "<?php\n/**\n * The template for displaying the footer\n *\n * Contains the closing of the #content div and all content after.\n *\n * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials\n *\n * @package _s\n */\n\n?>\n\n\t<footer id=\"colophon\" class=\"site-footer\">\n\t\t<div class=\"site-info\">\n\t\t\t<a href=\"<?php echo esc_url( __( 'https://wordpress.org/', '_s' ) ); ?>\">\n\t\t\t\t<?php\n\t\t\t\t/* translators: %s: CMS name, i.e. WordPress. */\n\t\t\t\tprintf( esc_html__( 'Proudly powered by %s', '_s' ), 'WordPress' );\n\t\t\t\t?>\n\t\t\t</a>\n\t\t\t<span class=\"sep\"> | </span>\n\t\t\t\t<?php\n\t\t\t\t/* translators: 1: Theme name, 2: Theme author. */\n\t\t\t\tprintf( esc_html__( 'Theme: %1$s by %2$s.', '_s' ), '_s', '<a href=\"https://automattic.com/\">Automattic</a>' );\n\t\t\t\t?>\n\t\t</div><!-- .site-info -->\n\t</footer><!-- #colophon -->\n</div><!-- #page -->\n\n<?php wp_footer(); ?>\n\n</body>\n</html>\n"
  },
  {
    "path": "functions.php",
    "content": "<?php\n/**\n * _s functions and definitions\n *\n * @link https://developer.wordpress.org/themes/basics/theme-functions/\n *\n * @package _s\n */\n\nif ( ! defined( '_S_VERSION' ) ) {\n\t// Replace the version number of the theme on each release.\n\tdefine( '_S_VERSION', '1.0.0' );\n}\n\n/**\n * Sets up theme defaults and registers support for various WordPress features.\n *\n * Note that this function is hooked into the after_setup_theme hook, which\n * runs before the init hook. The init hook is too late for some features, such\n * as indicating support for post thumbnails.\n */\nfunction _s_setup() {\n\t/*\n\t\t* Make theme available for translation.\n\t\t* Translations can be filed in the /languages/ directory.\n\t\t* If you're building a theme based on _s, use a find and replace\n\t\t* to change '_s' to the name of your theme in all the template files.\n\t\t*/\n\tload_theme_textdomain( '_s', get_template_directory() . '/languages' );\n\n\t// Add default posts and comments RSS feed links to head.\n\tadd_theme_support( 'automatic-feed-links' );\n\n\t/*\n\t\t* Let WordPress manage the document title.\n\t\t* By adding theme support, we declare that this theme does not use a\n\t\t* hard-coded <title> tag in the document head, and expect WordPress to\n\t\t* provide it for us.\n\t\t*/\n\tadd_theme_support( 'title-tag' );\n\n\t/*\n\t\t* Enable support for Post Thumbnails on posts and pages.\n\t\t*\n\t\t* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/\n\t\t*/\n\tadd_theme_support( 'post-thumbnails' );\n\n\t// This theme uses wp_nav_menu() in one location.\n\tregister_nav_menus(\n\t\tarray(\n\t\t\t'menu-1' => esc_html__( 'Primary', '_s' ),\n\t\t)\n\t);\n\n\t/*\n\t\t* Switch default core markup for search form, comment form, and comments\n\t\t* to output valid HTML5.\n\t\t*/\n\tadd_theme_support(\n\t\t'html5',\n\t\tarray(\n\t\t\t'search-form',\n\t\t\t'comment-form',\n\t\t\t'comment-list',\n\t\t\t'gallery',\n\t\t\t'caption',\n\t\t\t'style',\n\t\t\t'script',\n\t\t)\n\t);\n\n\t// Set up the WordPress core custom background feature.\n\tadd_theme_support(\n\t\t'custom-background',\n\t\tapply_filters(\n\t\t\t'_s_custom_background_args',\n\t\t\tarray(\n\t\t\t\t'default-color' => 'ffffff',\n\t\t\t\t'default-image' => '',\n\t\t\t)\n\t\t)\n\t);\n\n\t// Add theme support for selective refresh for widgets.\n\tadd_theme_support( 'customize-selective-refresh-widgets' );\n\n\t/**\n\t * Add support for core custom logo.\n\t *\n\t * @link https://codex.wordpress.org/Theme_Logo\n\t */\n\tadd_theme_support(\n\t\t'custom-logo',\n\t\tarray(\n\t\t\t'height'      => 250,\n\t\t\t'width'       => 250,\n\t\t\t'flex-width'  => true,\n\t\t\t'flex-height' => true,\n\t\t)\n\t);\n}\nadd_action( 'after_setup_theme', '_s_setup' );\n\n/**\n * Set the content width in pixels, based on the theme's design and stylesheet.\n *\n * Priority 0 to make it available to lower priority callbacks.\n *\n * @global int $content_width\n */\nfunction _s_content_width() {\n\t$GLOBALS['content_width'] = apply_filters( '_s_content_width', 640 );\n}\nadd_action( 'after_setup_theme', '_s_content_width', 0 );\n\n/**\n * Register widget area.\n *\n * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar\n */\nfunction _s_widgets_init() {\n\tregister_sidebar(\n\t\tarray(\n\t\t\t'name'          => esc_html__( 'Sidebar', '_s' ),\n\t\t\t'id'            => 'sidebar-1',\n\t\t\t'description'   => esc_html__( 'Add widgets here.', '_s' ),\n\t\t\t'before_widget' => '<section id=\"%1$s\" class=\"widget %2$s\">',\n\t\t\t'after_widget'  => '</section>',\n\t\t\t'before_title'  => '<h2 class=\"widget-title\">',\n\t\t\t'after_title'   => '</h2>',\n\t\t)\n\t);\n}\nadd_action( 'widgets_init', '_s_widgets_init' );\n\n/**\n * Enqueue scripts and styles.\n */\nfunction _s_scripts() {\n\twp_enqueue_style( '_s-style', get_stylesheet_uri(), array(), _S_VERSION );\n\twp_style_add_data( '_s-style', 'rtl', 'replace' );\n\n\twp_enqueue_script( '_s-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true );\n\n\tif ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {\n\t\twp_enqueue_script( 'comment-reply' );\n\t}\n}\nadd_action( 'wp_enqueue_scripts', '_s_scripts' );\n\n/**\n * Implement the Custom Header feature.\n */\nrequire get_template_directory() . '/inc/custom-header.php';\n\n/**\n * Custom template tags for this theme.\n */\nrequire get_template_directory() . '/inc/template-tags.php';\n\n/**\n * Functions which enhance the theme by hooking into WordPress.\n */\nrequire get_template_directory() . '/inc/template-functions.php';\n\n/**\n * Customizer additions.\n */\nrequire get_template_directory() . '/inc/customizer.php';\n\n/**\n * Load Jetpack compatibility file.\n */\nif ( defined( 'JETPACK__VERSION' ) ) {\n\trequire get_template_directory() . '/inc/jetpack.php';\n}\n\n/**\n * Load WooCommerce compatibility file.\n */\nif ( class_exists( 'WooCommerce' ) ) {\n\trequire get_template_directory() . '/inc/woocommerce.php';\n}\n"
  },
  {
    "path": "header.php",
    "content": "<?php\n/**\n * The header for our theme\n *\n * This is the template that displays all of the <head> section and everything up until <div id=\"content\">\n *\n * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials\n *\n * @package _s\n */\n\n?>\n<!doctype html>\n<html <?php language_attributes(); ?>>\n<head>\n\t<meta charset=\"<?php bloginfo( 'charset' ); ?>\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"profile\" href=\"https://gmpg.org/xfn/11\">\n\n\t<?php wp_head(); ?>\n</head>\n\n<body <?php body_class(); ?>>\n<?php wp_body_open(); ?>\n<div id=\"page\" class=\"site\">\n\t<a class=\"skip-link screen-reader-text\" href=\"#primary\"><?php esc_html_e( 'Skip to content', '_s' ); ?></a>\n\n\t<header id=\"masthead\" class=\"site-header\">\n\t\t<div class=\"site-branding\">\n\t\t\t<?php\n\t\t\tthe_custom_logo();\n\t\t\tif ( is_front_page() && is_home() ) :\n\t\t\t\t?>\n\t\t\t\t<h1 class=\"site-title\"><a href=\"<?php echo esc_url( home_url( '/' ) ); ?>\" rel=\"home\"><?php bloginfo( 'name' ); ?></a></h1>\n\t\t\t\t<?php\n\t\t\telse :\n\t\t\t\t?>\n\t\t\t\t<p class=\"site-title\"><a href=\"<?php echo esc_url( home_url( '/' ) ); ?>\" rel=\"home\"><?php bloginfo( 'name' ); ?></a></p>\n\t\t\t\t<?php\n\t\t\tendif;\n\t\t\t$_s_description = get_bloginfo( 'description', 'display' );\n\t\t\tif ( $_s_description || is_customize_preview() ) :\n\t\t\t\t?>\n\t\t\t\t<p class=\"site-description\"><?php echo $_s_description; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>\n\t\t\t<?php endif; ?>\n\t\t</div><!-- .site-branding -->\n\n\t\t<nav id=\"site-navigation\" class=\"main-navigation\">\n\t\t\t<button class=\"menu-toggle\" aria-controls=\"primary-menu\" aria-expanded=\"false\"><?php esc_html_e( 'Primary Menu', '_s' ); ?></button>\n\t\t\t<?php\n\t\t\twp_nav_menu(\n\t\t\t\tarray(\n\t\t\t\t\t'theme_location' => 'menu-1',\n\t\t\t\t\t'menu_id'        => 'primary-menu',\n\t\t\t\t)\n\t\t\t);\n\t\t\t?>\n\t\t</nav><!-- #site-navigation -->\n\t</header><!-- #masthead -->\n"
  },
  {
    "path": "inc/custom-header.php",
    "content": "<?php\n/**\n * Sample implementation of the Custom Header feature\n *\n * You can add an optional custom header image to header.php like so ...\n *\n\t<?php the_header_image_tag(); ?>\n *\n * @link https://developer.wordpress.org/themes/functionality/custom-headers/\n *\n * @package _s\n */\n\n/**\n * Set up the WordPress core custom header feature.\n *\n * @uses _s_header_style()\n */\nfunction _s_custom_header_setup() {\n\tadd_theme_support(\n\t\t'custom-header',\n\t\tapply_filters(\n\t\t\t'_s_custom_header_args',\n\t\t\tarray(\n\t\t\t\t'default-image'      => '',\n\t\t\t\t'default-text-color' => '000000',\n\t\t\t\t'width'              => 1000,\n\t\t\t\t'height'             => 250,\n\t\t\t\t'flex-height'        => true,\n\t\t\t\t'wp-head-callback'   => '_s_header_style',\n\t\t\t)\n\t\t)\n\t);\n}\nadd_action( 'after_setup_theme', '_s_custom_header_setup' );\n\nif ( ! function_exists( '_s_header_style' ) ) :\n\t/**\n\t * Styles the header image and text displayed on the blog.\n\t *\n\t * @see _s_custom_header_setup().\n\t */\n\tfunction _s_header_style() {\n\t\t$header_text_color = get_header_textcolor();\n\n\t\t/*\n\t\t * If no custom options for text are set, let's bail.\n\t\t * get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: add_theme_support( 'custom-header' ).\n\t\t */\n\t\tif ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If we get this far, we have custom styles. Let's do this.\n\t\t?>\n\t\t<style type=\"text/css\">\n\t\t<?php\n\t\t// Has the text been hidden?\n\t\tif ( ! display_header_text() ) :\n\t\t\t?>\n\t\t\t.site-title,\n\t\t\t.site-description {\n\t\t\t\tposition: absolute;\n\t\t\t\tclip: rect(1px, 1px, 1px, 1px);\n\t\t\t\t}\n\t\t\t<?php\n\t\t\t// If the user has set a custom color for the text use that.\n\t\telse :\n\t\t\t?>\n\t\t\t.site-title a,\n\t\t\t.site-description {\n\t\t\t\tcolor: #<?php echo esc_attr( $header_text_color ); ?>;\n\t\t\t}\n\t\t<?php endif; ?>\n\t\t</style>\n\t\t<?php\n\t}\nendif;\n"
  },
  {
    "path": "inc/customizer.php",
    "content": "<?php\n/**\n * _s Theme Customizer\n *\n * @package _s\n */\n\n/**\n * Add postMessage support for site title and description for the Theme Customizer.\n *\n * @param WP_Customize_Manager $wp_customize Theme Customizer object.\n */\nfunction _s_customize_register( $wp_customize ) {\n\t$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';\n\t$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';\n\t$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';\n\n\tif ( isset( $wp_customize->selective_refresh ) ) {\n\t\t$wp_customize->selective_refresh->add_partial(\n\t\t\t'blogname',\n\t\t\tarray(\n\t\t\t\t'selector'        => '.site-title a',\n\t\t\t\t'render_callback' => '_s_customize_partial_blogname',\n\t\t\t)\n\t\t);\n\t\t$wp_customize->selective_refresh->add_partial(\n\t\t\t'blogdescription',\n\t\t\tarray(\n\t\t\t\t'selector'        => '.site-description',\n\t\t\t\t'render_callback' => '_s_customize_partial_blogdescription',\n\t\t\t)\n\t\t);\n\t}\n}\nadd_action( 'customize_register', '_s_customize_register' );\n\n/**\n * Render the site title for the selective refresh partial.\n *\n * @return void\n */\nfunction _s_customize_partial_blogname() {\n\tbloginfo( 'name' );\n}\n\n/**\n * Render the site tagline for the selective refresh partial.\n *\n * @return void\n */\nfunction _s_customize_partial_blogdescription() {\n\tbloginfo( 'description' );\n}\n\n/**\n * Binds JS handlers to make Theme Customizer preview reload changes asynchronously.\n */\nfunction _s_customize_preview_js() {\n\twp_enqueue_script( '_s-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), _S_VERSION, true );\n}\nadd_action( 'customize_preview_init', '_s_customize_preview_js' );\n"
  },
  {
    "path": "inc/jetpack.php",
    "content": "<?php\n/**\n * Jetpack Compatibility File\n *\n * @link https://jetpack.com/\n *\n * @package _s\n */\n\n/**\n * Jetpack setup function.\n *\n * See: https://jetpack.com/support/infinite-scroll/\n * See: https://jetpack.com/support/responsive-videos/\n * See: https://jetpack.com/support/content-options/\n */\nfunction _s_jetpack_setup() {\n\t// Add theme support for Infinite Scroll.\n\tadd_theme_support(\n\t\t'infinite-scroll',\n\t\tarray(\n\t\t\t'container' => 'main',\n\t\t\t'render'    => '_s_infinite_scroll_render',\n\t\t\t'footer'    => 'page',\n\t\t)\n\t);\n\n\t// Add theme support for Responsive Videos.\n\tadd_theme_support( 'jetpack-responsive-videos' );\n\n\t// Add theme support for Content Options.\n\tadd_theme_support(\n\t\t'jetpack-content-options',\n\t\tarray(\n\t\t\t'post-details' => array(\n\t\t\t\t'stylesheet' => '_s-style',\n\t\t\t\t'date'       => '.posted-on',\n\t\t\t\t'categories' => '.cat-links',\n\t\t\t\t'tags'       => '.tags-links',\n\t\t\t\t'author'     => '.byline',\n\t\t\t\t'comment'    => '.comments-link',\n\t\t\t),\n\t\t\t'featured-images' => array(\n\t\t\t\t'archive' => true,\n\t\t\t\t'post'    => true,\n\t\t\t\t'page'    => true,\n\t\t\t),\n\t\t)\n\t);\n}\nadd_action( 'after_setup_theme', '_s_jetpack_setup' );\n\nif ( ! function_exists( '_s_infinite_scroll_render' ) ) :\n\t/**\n\t * Custom render function for Infinite Scroll.\n\t */\n\tfunction _s_infinite_scroll_render() {\n\t\twhile ( have_posts() ) {\n\t\t\tthe_post();\n\t\t\tif ( is_search() ) :\n\t\t\t\tget_template_part( 'template-parts/content', 'search' );\n\t\t\telse :\n\t\t\t\tget_template_part( 'template-parts/content', get_post_type() );\n\t\t\tendif;\n\t\t}\n\t}\nendif;\n"
  },
  {
    "path": "inc/template-functions.php",
    "content": "<?php\n/**\n * Functions which enhance the theme by hooking into WordPress\n *\n * @package _s\n */\n\n/**\n * Adds custom classes to the array of body classes.\n *\n * @param array $classes Classes for the body element.\n * @return array\n */\nfunction _s_body_classes( $classes ) {\n\t// Adds a class of hfeed to non-singular pages.\n\tif ( ! is_singular() ) {\n\t\t$classes[] = 'hfeed';\n\t}\n\n\t// Adds a class of no-sidebar when there is no sidebar present.\n\tif ( ! is_active_sidebar( 'sidebar-1' ) ) {\n\t\t$classes[] = 'no-sidebar';\n\t}\n\n\treturn $classes;\n}\nadd_filter( 'body_class', '_s_body_classes' );\n\n/**\n * Add a pingback url auto-discovery header for single posts, pages, or attachments.\n */\nfunction _s_pingback_header() {\n\tif ( is_singular() && pings_open() ) {\n\t\tprintf( '<link rel=\"pingback\" href=\"%s\">', esc_url( get_bloginfo( 'pingback_url' ) ) );\n\t}\n}\nadd_action( 'wp_head', '_s_pingback_header' );\n"
  },
  {
    "path": "inc/template-tags.php",
    "content": "<?php\n/**\n * Custom template tags for this theme\n *\n * Eventually, some of the functionality here could be replaced by core features.\n *\n * @package _s\n */\n\nif ( ! function_exists( '_s_posted_on' ) ) :\n\t/**\n\t * Prints HTML with meta information for the current post-date/time.\n\t */\n\tfunction _s_posted_on() {\n\t\t$time_string = '<time class=\"entry-date published updated\" datetime=\"%1$s\">%2$s</time>';\n\t\tif ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {\n\t\t\t$time_string = '<time class=\"entry-date published\" datetime=\"%1$s\">%2$s</time><time class=\"updated\" datetime=\"%3$s\">%4$s</time>';\n\t\t}\n\n\t\t$time_string = sprintf(\n\t\t\t$time_string,\n\t\t\tesc_attr( get_the_date( DATE_W3C ) ),\n\t\t\tesc_html( get_the_date() ),\n\t\t\tesc_attr( get_the_modified_date( DATE_W3C ) ),\n\t\t\tesc_html( get_the_modified_date() )\n\t\t);\n\n\t\t$posted_on = sprintf(\n\t\t\t/* translators: %s: post date. */\n\t\t\tesc_html_x( 'Posted on %s', 'post date', '_s' ),\n\t\t\t'<a href=\"' . esc_url( get_permalink() ) . '\" rel=\"bookmark\">' . $time_string . '</a>'\n\t\t);\n\n\t\techo '<span class=\"posted-on\">' . $posted_on . '</span>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n\n\t}\nendif;\n\nif ( ! function_exists( '_s_posted_by' ) ) :\n\t/**\n\t * Prints HTML with meta information for the current author.\n\t */\n\tfunction _s_posted_by() {\n\t\t$byline = sprintf(\n\t\t\t/* translators: %s: post author. */\n\t\t\tesc_html_x( 'by %s', 'post author', '_s' ),\n\t\t\t'<span class=\"author vcard\"><a class=\"url fn n\" href=\"' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '\">' . esc_html( get_the_author() ) . '</a></span>'\n\t\t);\n\n\t\techo '<span class=\"byline\"> ' . $byline . '</span>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n\n\t}\nendif;\n\nif ( ! function_exists( '_s_entry_footer' ) ) :\n\t/**\n\t * Prints HTML with meta information for the categories, tags and comments.\n\t */\n\tfunction _s_entry_footer() {\n\t\t// Hide category and tag text for pages.\n\t\tif ( 'post' === get_post_type() ) {\n\t\t\t/* translators: used between list items, there is a space after the comma */\n\t\t\t$categories_list = get_the_category_list( esc_html__( ', ', '_s' ) );\n\t\t\tif ( $categories_list ) {\n\t\t\t\t/* translators: 1: list of categories. */\n\t\t\t\tprintf( '<span class=\"cat-links\">' . esc_html__( 'Posted in %1$s', '_s' ) . '</span>', $categories_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n\t\t\t}\n\n\t\t\t/* translators: used between list items, there is a space after the comma */\n\t\t\t$tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', '_s' ) );\n\t\t\tif ( $tags_list ) {\n\t\t\t\t/* translators: 1: list of tags. */\n\t\t\t\tprintf( '<span class=\"tags-links\">' . esc_html__( 'Tagged %1$s', '_s' ) . '</span>', $tags_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n\t\t\t}\n\t\t}\n\n\t\tif ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {\n\t\t\techo '<span class=\"comments-link\">';\n\t\t\tcomments_popup_link(\n\t\t\t\tsprintf(\n\t\t\t\t\twp_kses(\n\t\t\t\t\t\t/* translators: %s: post title */\n\t\t\t\t\t\t__( 'Leave a Comment<span class=\"screen-reader-text\"> on %s</span>', '_s' ),\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'span' => array(\n\t\t\t\t\t\t\t\t'class' => array(),\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t)\n\t\t\t\t\t),\n\t\t\t\t\twp_kses_post( get_the_title() )\n\t\t\t\t)\n\t\t\t);\n\t\t\techo '</span>';\n\t\t}\n\n\t\tedit_post_link(\n\t\t\tsprintf(\n\t\t\t\twp_kses(\n\t\t\t\t\t/* translators: %s: Name of current post. Only visible to screen readers */\n\t\t\t\t\t__( 'Edit <span class=\"screen-reader-text\">%s</span>', '_s' ),\n\t\t\t\t\tarray(\n\t\t\t\t\t\t'span' => array(\n\t\t\t\t\t\t\t'class' => array(),\n\t\t\t\t\t\t),\n\t\t\t\t\t)\n\t\t\t\t),\n\t\t\t\twp_kses_post( get_the_title() )\n\t\t\t),\n\t\t\t'<span class=\"edit-link\">',\n\t\t\t'</span>'\n\t\t);\n\t}\nendif;\n\nif ( ! function_exists( '_s_post_thumbnail' ) ) :\n\t/**\n\t * Displays an optional post thumbnail.\n\t *\n\t * Wraps the post thumbnail in an anchor element on index views, or a div\n\t * element when on single views.\n\t */\n\tfunction _s_post_thumbnail() {\n\t\tif ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( is_singular() ) :\n\t\t\t?>\n\n\t\t\t<div class=\"post-thumbnail\">\n\t\t\t\t<?php the_post_thumbnail(); ?>\n\t\t\t</div><!-- .post-thumbnail -->\n\n\t\t<?php else : ?>\n\n\t\t\t<a class=\"post-thumbnail\" href=\"<?php the_permalink(); ?>\" aria-hidden=\"true\" tabindex=\"-1\">\n\t\t\t\t<?php\n\t\t\t\t\tthe_post_thumbnail(\n\t\t\t\t\t\t'post-thumbnail',\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'alt' => the_title_attribute(\n\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t'echo' => false,\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\t\t\t\t?>\n\t\t\t</a>\n\n\t\t\t<?php\n\t\tendif; // End is_singular().\n\t}\nendif;\n\nif ( ! function_exists( 'wp_body_open' ) ) :\n\t/**\n\t * Shim for sites older than 5.2.\n\t *\n\t * @link https://core.trac.wordpress.org/ticket/12563\n\t */\n\tfunction wp_body_open() {\n\t\tdo_action( 'wp_body_open' );\n\t}\nendif;\n"
  },
  {
    "path": "inc/woocommerce.php",
    "content": "<?php\n/**\n * WooCommerce Compatibility File\n *\n * @link https://woocommerce.com/\n *\n * @package _s\n */\n\n/**\n * WooCommerce setup function.\n *\n * @link https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/\n * @link https://github.com/woocommerce/woocommerce/wiki/Enabling-product-gallery-features-(zoom,-swipe,-lightbox)\n * @link https://github.com/woocommerce/woocommerce/wiki/Declaring-WooCommerce-support-in-themes\n *\n * @return void\n */\nfunction _s_woocommerce_setup() {\n\tadd_theme_support(\n\t\t'woocommerce',\n\t\tarray(\n\t\t\t'thumbnail_image_width' => 150,\n\t\t\t'single_image_width'    => 300,\n\t\t\t'product_grid'          => array(\n\t\t\t\t'default_rows'    => 3,\n\t\t\t\t'min_rows'        => 1,\n\t\t\t\t'default_columns' => 4,\n\t\t\t\t'min_columns'     => 1,\n\t\t\t\t'max_columns'     => 6,\n\t\t\t),\n\t\t)\n\t);\n\tadd_theme_support( 'wc-product-gallery-zoom' );\n\tadd_theme_support( 'wc-product-gallery-lightbox' );\n\tadd_theme_support( 'wc-product-gallery-slider' );\n}\nadd_action( 'after_setup_theme', '_s_woocommerce_setup' );\n\n/**\n * WooCommerce specific scripts & stylesheets.\n *\n * @return void\n */\nfunction _s_woocommerce_scripts() {\n\twp_enqueue_style( '_s-woocommerce-style', get_template_directory_uri() . '/woocommerce.css', array(), _S_VERSION );\n\n\t$font_path   = WC()->plugin_url() . '/assets/fonts/';\n\t$inline_font = '@font-face {\n\t\t\tfont-family: \"star\";\n\t\t\tsrc: url(\"' . $font_path . 'star.eot\");\n\t\t\tsrc: url(\"' . $font_path . 'star.eot?#iefix\") format(\"embedded-opentype\"),\n\t\t\t\turl(\"' . $font_path . 'star.woff\") format(\"woff\"),\n\t\t\t\turl(\"' . $font_path . 'star.ttf\") format(\"truetype\"),\n\t\t\t\turl(\"' . $font_path . 'star.svg#star\") format(\"svg\");\n\t\t\tfont-weight: normal;\n\t\t\tfont-style: normal;\n\t\t}';\n\n\twp_add_inline_style( '_s-woocommerce-style', $inline_font );\n}\nadd_action( 'wp_enqueue_scripts', '_s_woocommerce_scripts' );\n\n/**\n * Disable the default WooCommerce stylesheet.\n *\n * Removing the default WooCommerce stylesheet and enqueing your own will\n * protect you during WooCommerce core updates.\n *\n * @link https://docs.woocommerce.com/document/disable-the-default-stylesheet/\n */\nadd_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );\n\n/**\n * Add 'woocommerce-active' class to the body tag.\n *\n * @param  array $classes CSS classes applied to the body tag.\n * @return array $classes modified to include 'woocommerce-active' class.\n */\nfunction _s_woocommerce_active_body_class( $classes ) {\n\t$classes[] = 'woocommerce-active';\n\n\treturn $classes;\n}\nadd_filter( 'body_class', '_s_woocommerce_active_body_class' );\n\n/**\n * Related Products Args.\n *\n * @param array $args related products args.\n * @return array $args related products args.\n */\nfunction _s_woocommerce_related_products_args( $args ) {\n\t$defaults = array(\n\t\t'posts_per_page' => 3,\n\t\t'columns'        => 3,\n\t);\n\n\t$args = wp_parse_args( $defaults, $args );\n\n\treturn $args;\n}\nadd_filter( 'woocommerce_output_related_products_args', '_s_woocommerce_related_products_args' );\n\n/**\n * Remove default WooCommerce wrapper.\n */\nremove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );\nremove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );\n\nif ( ! function_exists( '_s_woocommerce_wrapper_before' ) ) {\n\t/**\n\t * Before Content.\n\t *\n\t * Wraps all WooCommerce content in wrappers which match the theme markup.\n\t *\n\t * @return void\n\t */\n\tfunction _s_woocommerce_wrapper_before() {\n\t\t?>\n\t\t\t<main id=\"primary\" class=\"site-main\">\n\t\t<?php\n\t}\n}\nadd_action( 'woocommerce_before_main_content', '_s_woocommerce_wrapper_before' );\n\nif ( ! function_exists( '_s_woocommerce_wrapper_after' ) ) {\n\t/**\n\t * After Content.\n\t *\n\t * Closes the wrapping divs.\n\t *\n\t * @return void\n\t */\n\tfunction _s_woocommerce_wrapper_after() {\n\t\t?>\n\t\t\t</main><!-- #main -->\n\t\t<?php\n\t}\n}\nadd_action( 'woocommerce_after_main_content', '_s_woocommerce_wrapper_after' );\n\n/**\n * Sample implementation of the WooCommerce Mini Cart.\n *\n * You can add the WooCommerce Mini Cart to header.php like so ...\n *\n\t<?php\n\t\tif ( function_exists( '_s_woocommerce_header_cart' ) ) {\n\t\t\t_s_woocommerce_header_cart();\n\t\t}\n\t?>\n */\n\nif ( ! function_exists( '_s_woocommerce_cart_link_fragment' ) ) {\n\t/**\n\t * Cart Fragments.\n\t *\n\t * Ensure cart contents update when products are added to the cart via AJAX.\n\t *\n\t * @param array $fragments Fragments to refresh via AJAX.\n\t * @return array Fragments to refresh via AJAX.\n\t */\n\tfunction _s_woocommerce_cart_link_fragment( $fragments ) {\n\t\tob_start();\n\t\t_s_woocommerce_cart_link();\n\t\t$fragments['a.cart-contents'] = ob_get_clean();\n\n\t\treturn $fragments;\n\t}\n}\nadd_filter( 'woocommerce_add_to_cart_fragments', '_s_woocommerce_cart_link_fragment' );\n\nif ( ! function_exists( '_s_woocommerce_cart_link' ) ) {\n\t/**\n\t * Cart Link.\n\t *\n\t * Displayed a link to the cart including the number of items present and the cart total.\n\t *\n\t * @return void\n\t */\n\tfunction _s_woocommerce_cart_link() {\n\t\t?>\n\t\t<a class=\"cart-contents\" href=\"<?php echo esc_url( wc_get_cart_url() ); ?>\" title=\"<?php esc_attr_e( 'View your shopping cart', '_s' ); ?>\">\n\t\t\t<?php\n\t\t\t$item_count_text = sprintf(\n\t\t\t\t/* translators: number of items in the mini cart. */\n\t\t\t\t_n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), '_s' ),\n\t\t\t\tWC()->cart->get_cart_contents_count()\n\t\t\t);\n\t\t\t?>\n\t\t\t<span class=\"amount\"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <span class=\"count\"><?php echo esc_html( $item_count_text ); ?></span>\n\t\t</a>\n\t\t<?php\n\t}\n}\n\nif ( ! function_exists( '_s_woocommerce_header_cart' ) ) {\n\t/**\n\t * Display Header Cart.\n\t *\n\t * @return void\n\t */\n\tfunction _s_woocommerce_header_cart() {\n\t\tif ( is_cart() ) {\n\t\t\t$class = 'current-menu-item';\n\t\t} else {\n\t\t\t$class = '';\n\t\t}\n\t\t?>\n\t\t<ul id=\"site-header-cart\" class=\"site-header-cart\">\n\t\t\t<li class=\"<?php echo esc_attr( $class ); ?>\">\n\t\t\t\t<?php _s_woocommerce_cart_link(); ?>\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<?php\n\t\t\t\t$instance = array(\n\t\t\t\t\t'title' => '',\n\t\t\t\t);\n\n\t\t\t\tthe_widget( 'WC_Widget_Cart', $instance );\n\t\t\t\t?>\n\t\t\t</li>\n\t\t</ul>\n\t\t<?php\n\t}\n}\n"
  },
  {
    "path": "inc/wpcom.php",
    "content": "<?php\n/**\n * WordPress.com-specific functions and definitions\n *\n * This file is centrally included from `wp-content/mu-plugins/wpcom-theme-compat.php`.\n *\n * @package _s\n */\n\n/**\n * Adds support for wp.com-specific theme functions.\n *\n * @global array $themecolors\n */\nfunction _s_wpcom_setup() {\n\tglobal $themecolors;\n\n\t// Set theme colors for third party services.\n\tif ( ! isset( $themecolors ) ) {\n\t\t// Whitelist wpcom specific variable intended to be overruled.\n\t\t// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound\n\t\t$themecolors = array(\n\t\t\t'bg'     => '',\n\t\t\t'border' => '',\n\t\t\t'text'   => '',\n\t\t\t'link'   => '',\n\t\t\t'url'    => '',\n\t\t);\n\t}\n}\nadd_action( 'after_setup_theme', '_s_wpcom_setup' );\n"
  },
  {
    "path": "index.php",
    "content": "<?php\n/**\n * The main template file\n *\n * This is the most generic template file in a WordPress theme\n * and one of the two required files for a theme (the other being style.css).\n * It is used to display a page when nothing more specific matches a query.\n * E.g., it puts together the home page when no home.php file exists.\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\nget_header();\n?>\n\n\t<main id=\"primary\" class=\"site-main\">\n\n\t\t<?php\n\t\tif ( have_posts() ) :\n\n\t\t\tif ( is_home() && ! is_front_page() ) :\n\t\t\t\t?>\n\t\t\t\t<header>\n\t\t\t\t\t<h1 class=\"page-title screen-reader-text\"><?php single_post_title(); ?></h1>\n\t\t\t\t</header>\n\t\t\t\t<?php\n\t\t\tendif;\n\n\t\t\t/* Start the Loop */\n\t\t\twhile ( have_posts() ) :\n\t\t\t\tthe_post();\n\n\t\t\t\t/*\n\t\t\t\t * Include the Post-Type-specific template for the content.\n\t\t\t\t * If you want to override this in a child theme, then include a file\n\t\t\t\t * called content-___.php (where ___ is the Post Type name) and that will be used instead.\n\t\t\t\t */\n\t\t\t\tget_template_part( 'template-parts/content', get_post_type() );\n\n\t\t\tendwhile;\n\n\t\t\tthe_posts_navigation();\n\n\t\telse :\n\n\t\t\tget_template_part( 'template-parts/content', 'none' );\n\n\t\tendif;\n\t\t?>\n\n\t</main><!-- #main -->\n\n<?php\nget_sidebar();\nget_footer();\n"
  },
  {
    "path": "js/customizer.js",
    "content": "/* global wp, jQuery */\n/**\n * File customizer.js.\n *\n * Theme Customizer enhancements for a better user experience.\n *\n * Contains handlers to make Theme Customizer preview reload changes asynchronously.\n */\n\n( function( $ ) {\n\t// Site title and description.\n\twp.customize( 'blogname', function( value ) {\n\t\tvalue.bind( function( to ) {\n\t\t\t$( '.site-title a' ).text( to );\n\t\t} );\n\t} );\n\twp.customize( 'blogdescription', function( value ) {\n\t\tvalue.bind( function( to ) {\n\t\t\t$( '.site-description' ).text( to );\n\t\t} );\n\t} );\n\n\t// Header text color.\n\twp.customize( 'header_textcolor', function( value ) {\n\t\tvalue.bind( function( to ) {\n\t\t\tif ( 'blank' === to ) {\n\t\t\t\t$( '.site-title, .site-description' ).css( {\n\t\t\t\t\tclip: 'rect(1px, 1px, 1px, 1px)',\n\t\t\t\t\tposition: 'absolute',\n\t\t\t\t} );\n\t\t\t} else {\n\t\t\t\t$( '.site-title, .site-description' ).css( {\n\t\t\t\t\tclip: 'auto',\n\t\t\t\t\tposition: 'relative',\n\t\t\t\t} );\n\t\t\t\t$( '.site-title a, .site-description' ).css( {\n\t\t\t\t\tcolor: to,\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t} );\n}( jQuery ) );\n"
  },
  {
    "path": "js/navigation.js",
    "content": "/**\n * File navigation.js.\n *\n * Handles toggling the navigation menu for small screens and enables TAB key\n * navigation support for dropdown menus.\n */\n( function() {\n\tconst siteNavigation = document.getElementById( 'site-navigation' );\n\n\t// Return early if the navigation doesn't exist.\n\tif ( ! siteNavigation ) {\n\t\treturn;\n\t}\n\n\tconst button = siteNavigation.getElementsByTagName( 'button' )[ 0 ];\n\n\t// Return early if the button doesn't exist.\n\tif ( 'undefined' === typeof button ) {\n\t\treturn;\n\t}\n\n\tconst menu = siteNavigation.getElementsByTagName( 'ul' )[ 0 ];\n\n\t// Hide menu toggle button if menu is empty and return early.\n\tif ( 'undefined' === typeof menu ) {\n\t\tbutton.style.display = 'none';\n\t\treturn;\n\t}\n\n\tif ( ! menu.classList.contains( 'nav-menu' ) ) {\n\t\tmenu.classList.add( 'nav-menu' );\n\t}\n\n\t// Toggle the .toggled class and the aria-expanded value each time the button is clicked.\n\tbutton.addEventListener( 'click', function() {\n\t\tsiteNavigation.classList.toggle( 'toggled' );\n\n\t\tif ( button.getAttribute( 'aria-expanded' ) === 'true' ) {\n\t\t\tbutton.setAttribute( 'aria-expanded', 'false' );\n\t\t} else {\n\t\t\tbutton.setAttribute( 'aria-expanded', 'true' );\n\t\t}\n\t} );\n\n\t// Remove the .toggled class and set aria-expanded to false when the user clicks outside the navigation.\n\tdocument.addEventListener( 'click', function( event ) {\n\t\tconst isClickInside = siteNavigation.contains( event.target );\n\n\t\tif ( ! isClickInside ) {\n\t\t\tsiteNavigation.classList.remove( 'toggled' );\n\t\t\tbutton.setAttribute( 'aria-expanded', 'false' );\n\t\t}\n\t} );\n\n\t// Get all the link elements within the menu.\n\tconst links = menu.getElementsByTagName( 'a' );\n\n\t// Get all the link elements with children within the menu.\n\tconst linksWithChildren = menu.querySelectorAll( '.menu-item-has-children > a, .page_item_has_children > a' );\n\n\t// Toggle focus each time a menu link is focused or blurred.\n\tfor ( const link of links ) {\n\t\tlink.addEventListener( 'focus', toggleFocus, true );\n\t\tlink.addEventListener( 'blur', toggleFocus, true );\n\t}\n\n\t// Toggle focus each time a menu link with children receive a touch event.\n\tfor ( const link of linksWithChildren ) {\n\t\tlink.addEventListener( 'touchstart', toggleFocus, false );\n\t}\n\n\t/**\n\t * Sets or removes .focus class on an element.\n\t */\n\tfunction toggleFocus() {\n\t\tif ( event.type === 'focus' || event.type === 'blur' ) {\n\t\t\tlet self = this;\n\t\t\t// Move up through the ancestors of the current link until we hit .nav-menu.\n\t\t\twhile ( ! self.classList.contains( 'nav-menu' ) ) {\n\t\t\t\t// On li elements toggle the class .focus.\n\t\t\t\tif ( 'li' === self.tagName.toLowerCase() ) {\n\t\t\t\t\tself.classList.toggle( 'focus' );\n\t\t\t\t}\n\t\t\t\tself = self.parentNode;\n\t\t\t}\n\t\t}\n\n\t\tif ( event.type === 'touchstart' ) {\n\t\t\tconst menuItem = this.parentNode;\n\t\t\tevent.preventDefault();\n\t\t\tfor ( const link of menuItem.parentNode.children ) {\n\t\t\t\tif ( menuItem !== link ) {\n\t\t\t\t\tlink.classList.remove( 'focus' );\n\t\t\t\t}\n\t\t\t}\n\t\t\tmenuItem.classList.toggle( 'focus' );\n\t\t}\n\t}\n}() );\n"
  },
  {
    "path": "languages/_s.pot",
    "content": "# Copyright (C) 2020 Automattic\n# This file is distributed under the GNU General Public License v2 or later.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: _s 1.0.0\\n\"\n\"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/_s\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"POT-Creation-Date: 2020-04-17T21:03:15+00:00\\n\"\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n\"X-Generator: WP-CLI 2.4.0\\n\"\n\"X-Domain: _s\\n\"\n\n#. Theme Name of the theme\nmsgid \"_s\"\nmsgstr \"\"\n\n#. Theme URI of the theme\nmsgid \"https://underscores.me/\"\nmsgstr \"\"\n\n#. Description of the theme\nmsgid \"Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\"\nmsgstr \"\"\n\n#. Author of the theme\nmsgid \"Automattic\"\nmsgstr \"\"\n\n#. Author URI of the theme\nmsgid \"https://automattic.com/\"\nmsgstr \"\"\n\n#: 404.php:18\nmsgid \"Oops! That page can&rsquo;t be found.\"\nmsgstr \"\"\n\n#: 404.php:22\nmsgid \"It looks like nothing was found at this location. Maybe try one of the links below or a search?\"\nmsgstr \"\"\n\n#: 404.php:31\nmsgid \"Most Used Categories\"\nmsgstr \"\"\n\n#. translators: %1$s: smiley\n#: 404.php:49\nmsgid \"Try looking in the monthly archives. %1$s\"\nmsgstr \"\"\n\n#. translators: 1: title.\n#: comments.php:35\nmsgid \"One thought on &ldquo;%1$s&rdquo;\"\nmsgstr \"\"\n\n#. translators: 1: comment count number, 2: title.\n#: comments.php:41\nmsgctxt \"comments title\"\nmsgid \"%1$s thought on &ldquo;%2$s&rdquo;\"\nmsgid_plural \"%1$s thoughts on &ldquo;%2$s&rdquo;\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#: comments.php:68\nmsgid \"Comments are closed.\"\nmsgstr \"\"\n\n#: footer.php:18\nmsgid \"https://wordpress.org/\"\nmsgstr \"\"\n\n#. translators: %s: CMS name, i.e. WordPress.\n#: footer.php:21\nmsgid \"Proudly powered by %s\"\nmsgstr \"\"\n\n#. translators: 1: Theme name, 2: Theme author.\n#: footer.php:27\nmsgid \"Theme: %1$s by %2$s.\"\nmsgstr \"\"\n\n#: functions.php:53\nmsgid \"Primary\"\nmsgstr \"\"\n\n#: functions.php:130\nmsgid \"Sidebar\"\nmsgstr \"\"\n\n#: functions.php:132\nmsgid \"Add widgets here.\"\nmsgstr \"\"\n\n#: header.php:26\nmsgid \"Skip to content\"\nmsgstr \"\"\n\n#: header.php:49\nmsgid \"Primary Menu\"\nmsgstr \"\"\n\n#. translators: %s: post date.\n#: inc/template-tags.php:30\nmsgctxt \"post date\"\nmsgid \"Posted on %s\"\nmsgstr \"\"\n\n#. translators: %s: post author.\n#: inc/template-tags.php:46\nmsgctxt \"post author\"\nmsgid \"by %s\"\nmsgstr \"\"\n\n#. translators: used between list items, there is a space after the comma\n#: inc/template-tags.php:63\nmsgid \", \"\nmsgstr \"\"\n\n#. translators: 1: list of categories.\n#: inc/template-tags.php:66\nmsgid \"Posted in %1$s\"\nmsgstr \"\"\n\n#. translators: used between list items, there is a space after the comma\n#: inc/template-tags.php:70\nmsgctxt \"list item separator\"\nmsgid \", \"\nmsgstr \"\"\n\n#. translators: 1: list of tags.\n#: inc/template-tags.php:73\nmsgid \"Tagged %1$s\"\nmsgstr \"\"\n\n#. translators: %s: post title\n#: inc/template-tags.php:83\nmsgid \"Leave a Comment<span class=\\\"screen-reader-text\\\"> on %s</span>\"\nmsgstr \"\"\n\n#. translators: %s: Name of current post. Only visible to screen readers\n#: inc/template-tags.php:100\n#: template-parts/content-page.php:39\nmsgid \"Edit <span class=\\\"screen-reader-text\\\">%s</span>\"\nmsgstr \"\"\n\n#: inc/woocommerce.php:186\nmsgid \"View your shopping cart\"\nmsgstr \"\"\n\n#. translators: number of items in the mini cart.\n#: inc/woocommerce.php:190\nmsgid \"%d item\"\nmsgid_plural \"%d items\"\nmsgstr[0] \"\"\nmsgstr[1] \"\"\n\n#. translators: %s: search query.\n#: search.php:22\nmsgid \"Search Results for: %s\"\nmsgstr \"\"\n\n#: single.php:23\nmsgid \"Previous:\"\nmsgstr \"\"\n\n#: single.php:24\nmsgid \"Next:\"\nmsgstr \"\"\n\n#: template-parts/content-none.php:14\nmsgid \"Nothing Found\"\nmsgstr \"\"\n\n#. translators: 1: link to WP admin new post page.\n#: template-parts/content-none.php:24\nmsgid \"Ready to publish your first post? <a href=\\\"%1$s\\\">Get started here</a>.\"\nmsgstr \"\"\n\n#: template-parts/content-none.php:37\nmsgid \"Sorry, but nothing matched your search terms. Please try again with some different keywords.\"\nmsgstr \"\"\n\n#: template-parts/content-none.php:44\nmsgid \"It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.\"\nmsgstr \"\"\n\n#: template-parts/content-page.php:25\n#: template-parts/content.php:53\nmsgid \"Pages:\"\nmsgstr \"\"\n\n#. translators: %s: Name of current post. Only visible to screen readers\n#: template-parts/content.php:40\nmsgid \"Continue reading<span class=\\\"screen-reader-text\\\"> \\\"%s\\\"</span>\"\nmsgstr \"\"\n"
  },
  {
    "path": "languages/readme.txt",
    "content": "Place your theme language files in this directory.\n\nPlease visit the following links to learn more about translating WordPress themes:\n\nhttps://make.wordpress.org/polyglots/teams/\nhttps://developer.wordpress.org/themes/functionality/localization/\nhttps://developer.wordpress.org/reference/functions/load_theme_textdomain/\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"underscores\",\n  \"version\": \"1.0.0\",\n  \"description\": \"Hi. I'm a starter theme called _s, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\",\n  \"author\": \"Automattic Theme Team\",\n  \"license\": \"GPL-2.0-or-later\",\n  \"keywords\": [\n    \"WordPress\",\n    \"Theme\"\n  ],\n  \"homepage\": \"https://github.com/Automattic/_s#readme\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/Automattic/_s.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/Automattic/_s/issues\"\n  },\n  \"devDependencies\": {\n    \"@wordpress/scripts\": \"^19.2.2\",\n    \"dir-archiver\": \"^1.1.1\",\n    \"node-sass\": \"^7.0.1\",\n    \"rtlcss\": \"^3.5.0\"\n  },\n  \"rtlcssConfig\": {\n    \"options\": {\n      \"autoRename\": false,\n      \"autoRenameStrict\": false,\n      \"blacklist\": {},\n      \"clean\": true,\n      \"greedy\": false,\n      \"processUrls\": false,\n      \"stringMap\": []\n    },\n    \"plugins\": [],\n    \"map\": false\n  },\n  \"scripts\": {\n    \"watch\": \"node-sass sass/ -o ./ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w\",\n    \"compile:css\": \"node-sass sass/ -o ./ && stylelint '*.css' --fix || true && stylelint '*.css' --fix\",\n    \"compile:rtl\": \"rtlcss style.css style-rtl.css\",\n    \"lint:scss\": \"wp-scripts lint-style 'sass/**/*.scss'\",\n    \"lint:js\": \"wp-scripts lint-js 'js/*.js'\",\n    \"bundle\": \"dir-archiver --src . --dest ../_s.zip --exclude .DS_Store .stylelintrc.json .eslintrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json .travis.yml phpcs.xml.dist sass style.css.map yarn.lock\"\n  }\n}\n"
  },
  {
    "path": "page.php",
    "content": "<?php\n/**\n * The template for displaying all pages\n *\n * This is the template that displays all pages by default.\n * Please note that this is the WordPress construct of pages\n * and that other 'pages' on your WordPress site may use a\n * different template.\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\nget_header();\n?>\n\n\t<main id=\"primary\" class=\"site-main\">\n\n\t\t<?php\n\t\twhile ( have_posts() ) :\n\t\t\tthe_post();\n\n\t\t\tget_template_part( 'template-parts/content', 'page' );\n\n\t\t\t// If comments are open or we have at least one comment, load up the comment template.\n\t\t\tif ( comments_open() || get_comments_number() ) :\n\t\t\t\tcomments_template();\n\t\t\tendif;\n\n\t\tendwhile; // End of the loop.\n\t\t?>\n\n\t</main><!-- #main -->\n\n<?php\nget_sidebar();\nget_footer();\n"
  },
  {
    "path": "phpcs.xml.dist",
    "content": "<?xml version=\"1.0\"?>\n<ruleset name=\"WordPress Theme Coding Standards\">\n\t<!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->\n\t<!-- See https://github.com/WordPress/WordPress-Coding-Standards -->\n\t<!-- See https://github.com/WPTRT/WPThemeReview -->\n\t<!-- See https://github.com/PHPCompatibility/PHPCompatibilityWP -->\n\n\t<!-- Set a description for this ruleset. -->\n\t<description>A custom set of code standard rules to check for WordPress themes.</description>\n\n\n\t<!--\n\t#############################################################################\n\tCOMMAND LINE ARGUMENTS\n\thttps://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml\n\t#############################################################################\n\t-->\n\n\t<!-- Pass some flags to PHPCS:\n\t\t p flag: Show progress of the run.\n\t\t s flag: Show sniff codes in all reports.\n\t-->\n\t<arg value=\"ps\"/>\n\n\t<!-- Strip the filepaths down to the relevant bit. -->\n\t<arg name=\"basepath\" value=\"./\"/>\n\n\t<!-- Check up to 8 files simultaneously. -->\n\t<arg name=\"parallel\" value=\"8\"/>\n\n\t<!-- Check PHP files only. JavaScript and CSS files are checked separately using the @wordpress/scripts package. -->\n\t<arg name=\"extensions\" value=\"php\"/>\n\n\t<!-- Check all files in this directory and the directories below it. -->\n\t<file>.</file>\n\n\t<!-- Exclude patterns. -->\n\t<exclude-pattern>/vendor/*</exclude-pattern>\n\t<exclude-pattern>/node_modules/*</exclude-pattern>\n\n\n\t<!--\n\t#############################################################################\n\tUSE THE WordPress AND THE Theme Review RULESET\n\t#############################################################################\n\t-->\n\n\t<rule ref=\"WordPress\">\n\t\t<!-- This rule does not apply here since the _s prefix should be changed by the theme author. -->\n\t\t<exclude name=\"WordPress.NamingConventions.PrefixAllGlobals.ShortPrefixPassed\"/>\n\t</rule>\n\t<rule ref=\"WPThemeReview\"/>\n\n\t<!--\n\t#############################################################################\n\tSNIFF SPECIFIC CONFIGURATION\n\t#############################################################################\n\t-->\n\n\t<!-- Verify that the text_domain is set to the desired text-domain.\n\t\t Multiple valid text domains can be provided as a comma-delimited list. -->\n\t<rule ref=\"WordPress.WP.I18n\">\n\t\t<properties>\n\t\t\t<property name=\"text_domain\" type=\"array\" value=\"_s\"/>\n\t\t</properties>\n\t</rule>\n\n\t<!-- Allow for theme specific exceptions to the file name rules based\n\t\t on the theme hierarchy. -->\n\t<rule ref=\"WordPress.Files.FileName\">\n\t\t<properties>\n\t\t\t<property name=\"is_theme\" value=\"true\"/>\n\t\t</properties>\n\t</rule>\n\n\t<!-- Set the minimum supported WP version. This is used by several sniffs.\n\t\t The minimum version set here should be in line with the minimum WP version\n\t\t as set in the \"Requires at least\" tag in the readme.txt file. -->\n\t<config name=\"minimum_supported_wp_version\" value=\"4.5\"/>\n\n\t<rule ref=\"WordPress.Arrays.MultipleStatementAlignment\">\n\t\t<properties>\n\t\t\t<!-- No need to adjust alignment of large arrays when the item with the largest key is removed. -->\n\t\t\t<property name=\"exact\" value=\"false\"/>\n\t\t\t<!-- Don't align multi-line items if ALL items in the array are multi-line. -->\n\t\t\t<property name=\"alignMultilineItems\" value=\"!=100\"/>\n\t\t\t<!-- Array assignment operator should always be on the same line as the array key. -->\n\t\t\t<property name=\"ignoreNewlines\" value=\"false\"/>\n\t\t</properties>\n\t</rule>\n\n\t<!-- Verify that everything in the global namespace is prefixed with a theme specific prefix.\n\t\t Multiple valid prefixes can be provided as a comma-delimited list. -->\n\t<rule ref=\"WordPress.NamingConventions.PrefixAllGlobals\">\n\t\t<properties>\n\t\t\t<property name=\"prefixes\" type=\"array\" value=\"_s\" />\n\t\t</properties>\n\t</rule>\n\n\n\t<!--\n\t#############################################################################\n\tUSE THE PHPCompatibility RULESET\n\t#############################################################################\n\t-->\n\n\t<config name=\"testVersion\" value=\"5.6-\"/>\n\t<rule ref=\"PHPCompatibilityWP\"/>\n\n</ruleset>\n"
  },
  {
    "path": "readme.txt",
    "content": "=== _s ===\n\nContributors: automattic\nTags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n\nRequires at least: 4.5\nTested up to: 5.4\nRequires PHP: 5.6\nStable tag: 1.0.0\nLicense: GNU General Public License v2 or later\nLicense URI: LICENSE\n\nA starter theme called _s, or underscores.\n\n== Description ==\n\nHi. I'm a starter theme called _s, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\n\n== Installation ==\n\n1. In your admin panel, go to Appearance > Themes and click the Add New button.\n2. Click Upload Theme and Choose File, then select the theme's .zip file. Click Install Now.\n3. Click Activate to use your new theme right away.\n\n== Frequently Asked Questions ==\n\n= Does this theme support any plugins? =\n\n_s includes support for WooCommerce and for Infinite Scroll in Jetpack.\n\n== Changelog ==\n\n= 1.0 - May 12 2015 =\n* Initial release\n\n== Credits ==\n\n* Based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)\n* normalize.css https://necolas.github.io/normalize.css/, (C) 2012-2018 Nicolas Gallagher and Jonathan Neal, [MIT](https://opensource.org/licenses/MIT)\n"
  },
  {
    "path": "sass/abstracts/_abstracts.scss",
    "content": "@import \"variables/colors\";\n@import \"variables/typography\";\n@import \"variables/structure\";\n@import \"variables/columns\";\n@import \"mixins/mixins\";\n"
  },
  {
    "path": "sass/abstracts/mixins/_mixins.scss",
    "content": "// Center block\n@mixin center-block {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n\n// Column width with margin\n@mixin column-width($numberColumns: 3) {\n\twidth: map-get($columns, $numberColumns) - ( ( $columns__margin * ( $numberColumns - 1 ) ) / $numberColumns );\n}\n"
  },
  {
    "path": "sass/abstracts/variables/_colors.scss",
    "content": "$color__background-body: #fff;\n$color__background-screen: #f1f1f1;\n$color__background-hr: #ccc;\n$color__background-button: #e6e6e6;\n$color__background-pre: #eee;\n$color__background-ins: #fff9c0;\n\n$color__text-screen: #21759b;\n$color__text-input: #666;\n$color__text-input-focus: #111;\n$color__link: #4169e1; //royalblue\n$color__link-visited: #800080; //purple\n$color__link-hover: #191970; //midnightblue\n$color__text-main: #404040;\n\n$color__border-button: #ccc #ccc #bbb;\n$color__border-button-hover: #ccc #bbb #aaa;\n$color__border-button-focus: #aaa #bbb #bbb;\n$color__border-input: #ccc;\n$color__border-abbr: #666;\n"
  },
  {
    "path": "sass/abstracts/variables/_columns.scss",
    "content": "$columns: (\n\t1: 100%,\n\t2: 50%,\n\t3: 33.33%,\n\t4: 25%,\n\t5: 20%,\n\t6: 16.66%,\n\t7: 14.28%,\n\t8: 12.5%,\n\t9: 11.11%\n);\n\n$columns__margin: 3.8%;\n"
  },
  {
    "path": "sass/abstracts/variables/_structure.scss",
    "content": "$size__site-main: 100%;\n$size__site-sidebar: 25%;\n"
  },
  {
    "path": "sass/abstracts/variables/_typography.scss",
    "content": "// stylelint-disable value-keyword-case\n$font__main: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n// stylelint-enable value-keyword-case\n$font__code: monaco, consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n$font__pre: \"Courier 10 Pitch\", courier, monospace;\n$font__line-height-body: 1.5;\n$font__line-height-pre: 1.6;\n"
  },
  {
    "path": "sass/base/_base.scss",
    "content": "/* Typography\n--------------------------------------------- */\n@import \"typography/typography\";\n\n/* Elements\n--------------------------------------------- */\n@import \"elements/body\";\n@import \"elements/hr\";\n@import \"elements/lists\";\n@import \"elements/media\";\n@import \"elements/tables\";\n\n/* Links\n--------------------------------------------- */\n@import \"elements/links\";\n\n/* Forms\n--------------------------------------------- */\n@import \"elements/buttons\";\n@import \"elements/fields\";\n"
  },
  {
    "path": "sass/base/elements/_body.scss",
    "content": "body {\n\tbackground: $color__background-body; // Fallback for when there is no custom background color defined.\n}\n"
  },
  {
    "path": "sass/base/elements/_buttons.scss",
    "content": "button,\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n\tborder: 1px solid;\n\tborder-color: $color__border-button;\n\tborder-radius: 3px;\n\tbackground: $color__background-button;\n\tcolor: rgba(0, 0, 0, 0.8);\n\tline-height: 1;\n\tpadding: 0.6em 1em 0.4em;\n\n\t&:hover {\n\t\tborder-color: $color__border-button-hover;\n\t}\n\n\t&:active,\n\t&:focus {\n\t\tborder-color: $color__border-button-focus;\n\t}\n}\n"
  },
  {
    "path": "sass/base/elements/_fields.scss",
    "content": "input[type=\"text\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"password\"],\ninput[type=\"search\"],\ninput[type=\"number\"],\ninput[type=\"tel\"],\ninput[type=\"range\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"week\"],\ninput[type=\"time\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"color\"],\ntextarea {\n\tcolor: $color__text-input;\n\tborder: 1px solid $color__border-input;\n\tborder-radius: 3px;\n\tpadding: 3px;\n\n\t&:focus {\n\t\tcolor: $color__text-input-focus;\n\t}\n}\n\nselect {\n\tborder: 1px solid $color__border-input;\n}\n\ntextarea {\n\twidth: 100%;\n}\n"
  },
  {
    "path": "sass/base/elements/_hr.scss",
    "content": "hr {\n\tbackground-color: $color__background-hr;\n\tborder: 0;\n\theight: 1px;\n\tmargin-bottom: 1.5em;\n}\n"
  },
  {
    "path": "sass/base/elements/_links.scss",
    "content": "a {\n\tcolor: $color__link;\n\n\t&:visited {\n\t\tcolor: $color__link-visited;\n\t}\n\n\t&:hover,\n\t&:focus,\n\t&:active {\n\t\tcolor: $color__link-hover;\n\t}\n\n\t&:focus {\n\t\toutline: thin dotted;\n\t}\n\n\t&:hover,\n\t&:active {\n\t\toutline: 0;\n\t}\n}\n"
  },
  {
    "path": "sass/base/elements/_lists.scss",
    "content": "ul,\nol {\n\tmargin: 0 0 1.5em 3em;\n}\n\nul {\n\tlist-style: disc;\n}\n\nol {\n\tlist-style: decimal;\n}\n\nli > ul,\nli > ol {\n\tmargin-bottom: 0;\n\tmargin-left: 1.5em;\n}\n\ndt {\n\tfont-weight: 700;\n}\n\ndd {\n\tmargin: 0 1.5em 1.5em;\n}\n"
  },
  {
    "path": "sass/base/elements/_media.scss",
    "content": "/* Make sure embeds and iframes fit their containers. */\nembed,\niframe,\nobject {\n\tmax-width: 100%;\n}\n\nimg {\n\theight: auto; // Make sure images are scaled correctly.\n\tmax-width: 100%; // Adhere to container width.\n}\n\nfigure {\n\tmargin: 1em 0; // Extra wide images within figure tags don't overflow the content area.\n}\n"
  },
  {
    "path": "sass/base/elements/_tables.scss",
    "content": "table {\n\tmargin: 0 0 1.5em;\n\twidth: 100%;\n}\n"
  },
  {
    "path": "sass/base/typography/_copy.scss",
    "content": "p {\n\tmargin-bottom: 1.5em;\n}\n\ndfn,\ncite,\nem,\ni {\n\tfont-style: italic;\n}\n\nblockquote {\n\tmargin: 0 1.5em;\n}\n\naddress {\n\tmargin: 0 0 1.5em;\n}\n\npre {\n\tbackground: $color__background-pre;\n\tfont-family: $font__pre;\n\tline-height: $font__line-height-pre;\n\tmargin-bottom: 1.6em;\n\tmax-width: 100%;\n\toverflow: auto;\n\tpadding: 1.6em;\n}\n\ncode,\nkbd,\ntt,\nvar {\n\tfont-family: $font__code;\n}\n\nabbr,\nacronym {\n\tborder-bottom: 1px dotted $color__border-abbr;\n\tcursor: help;\n}\n\nmark,\nins {\n\tbackground: $color__background-ins;\n\ttext-decoration: none;\n}\n\nbig {\n\tfont-size: 125%;\n}\n"
  },
  {
    "path": "sass/base/typography/_headings.scss",
    "content": "h1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n\tclear: both;\n}\n"
  },
  {
    "path": "sass/base/typography/_typography.scss",
    "content": "body,\nbutton,\ninput,\nselect,\noptgroup,\ntextarea {\n\tcolor: $color__text-main;\n\tfont-family: $font__main;\n\tfont-size: 1rem;\n\tline-height: $font__line-height-body;\n}\n\n@import \"headings\";\n@import \"copy\";\n"
  },
  {
    "path": "sass/components/_components.scss",
    "content": "/* Navigation\n--------------------------------------------- */\n@import \"navigation/navigation\";\n\n/* Posts and pages\n--------------------------------------------- */\n@import \"content/posts-and-pages\";\n\n/* Comments\n--------------------------------------------- */\n@import \"comments/comments\";\n\n/* Widgets\n--------------------------------------------- */\n@import \"widgets/widgets\";\n\n/* Media\n--------------------------------------------- */\n@import \"media/media\";\n\n/* Captions\n--------------------------------------------- */\n@import \"media/captions\";\n\n/* Galleries\n--------------------------------------------- */\n@import \"media/galleries\";\n"
  },
  {
    "path": "sass/components/comments/_comments.scss",
    "content": ".comment-content a {\n\tword-wrap: break-word;\n}\n\n.bypostauthor {\n\tdisplay: block;\n}\n"
  },
  {
    "path": "sass/components/content/_posts-and-pages.scss",
    "content": ".sticky {\n\tdisplay: block;\n}\n\n.post,\n.page {\n\tmargin: 0 0 1.5em;\n}\n\n.updated:not(.published) {\n\tdisplay: none;\n}\n\n.page-content,\n.entry-content,\n.entry-summary {\n\tmargin: 1.5em 0 0;\n}\n\n.page-links {\n\tclear: both;\n\tmargin: 0 0 1.5em;\n}\n"
  },
  {
    "path": "sass/components/media/_captions.scss",
    "content": ".wp-caption {\n\tmargin-bottom: 1.5em;\n\tmax-width: 100%;\n\n\timg[class*=\"wp-image-\"] {\n\n\t\t@include center-block;\n\t}\n\n\t.wp-caption-text {\n\t\tmargin: 0.8075em 0;\n\t}\n}\n\n.wp-caption-text {\n\ttext-align: center;\n}\n"
  },
  {
    "path": "sass/components/media/_galleries.scss",
    "content": ".gallery {\n\tmargin-bottom: 1.5em;\n\tdisplay: grid;\n\tgrid-gap: 1.5em;\n}\n\n.gallery-item {\n\tdisplay: inline-block;\n\ttext-align: center;\n\twidth: 100%;\n}\n\n// Loops to enumerate the classes for gallery columns.\n@for $i from 2 through 9 {\n\n\t.gallery-columns-#{$i} {\n\t\tgrid-template-columns: repeat($i, 1fr);\n\t}\n}\n\n.gallery-caption {\n\tdisplay: block;\n}\n"
  },
  {
    "path": "sass/components/media/_media.scss",
    "content": ".page-content .wp-smiley,\n.entry-content .wp-smiley,\n.comment-content .wp-smiley {\n\tborder: none;\n\tmargin-bottom: 0;\n\tmargin-top: 0;\n\tpadding: 0;\n}\n\n/* Make sure logo link wraps around logo image. */\n.custom-logo-link {\n\tdisplay: inline-block;\n}\n"
  },
  {
    "path": "sass/components/navigation/_navigation.scss",
    "content": ".main-navigation {\n\tdisplay: block;\n\twidth: 100%;\n\n\tul {\n\t\tdisplay: none;\n\t\tlist-style: none;\n\t\tmargin: 0;\n\t\tpadding-left: 0;\n\n\t\tul {\n\t\t\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);\n\t\t\tfloat: left;\n\t\t\tposition: absolute;\n\t\t\ttop: 100%;\n\t\t\tleft: -999em;\n\t\t\tz-index: 99999;\n\n\t\t\tul {\n\t\t\t\tleft: -999em;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\tli {\n\n\t\t\t\t&:hover > ul,\n\t\t\t\t&.focus > ul {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tleft: auto;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\ta {\n\t\t\t\twidth: 200px;\n\t\t\t}\n\n\t\t\t:hover > a,\n\t\t\t.focus > a {\n\t\t\t}\n\n\t\t\ta:hover,\n\t\t\ta.focus {\n\t\t\t}\n\t\t}\n\n\t\tli:hover > ul,\n\t\tli.focus > ul {\n\t\t\tleft: auto;\n\t\t}\n\t}\n\n\tli {\n\t\tposition: relative;\n\n\t\t&:hover > a,\n\t\t&.focus > a {\n\t\t}\n\t}\n\n\ta {\n\t\tdisplay: block;\n\t\ttext-decoration: none;\n\t}\n\n\t.current_page_item > a,\n\t.current-menu-item > a,\n\t.current_page_ancestor > a,\n\t.current-menu-ancestor > a {\n\t}\n}\n\n/* Small menu. */\n.menu-toggle,\n.main-navigation.toggled ul {\n\tdisplay: block;\n}\n\n@media screen and (min-width: 37.5em) {\n\n\t.menu-toggle {\n\t\tdisplay: none;\n\t}\n\n\t.main-navigation ul {\n\t\tdisplay: flex;\n\t}\n}\n\n.comment-navigation,\n.posts-navigation,\n.post-navigation {\n\n\t.site-main & {\n\t\tmargin: 0 0 1.5em;\n\t}\n\n\t.nav-links {\n\t\tdisplay: flex;\n\t}\n\n\t.nav-previous {\n\t\tflex: 1 0 50%;\n\t}\n\n\t.nav-next {\n\t\ttext-align: end;\n\t\tflex: 1 0 50%;\n\t}\n}\n"
  },
  {
    "path": "sass/components/widgets/_widgets.scss",
    "content": ".widget {\n\tmargin: 0 0 1.5em;\n\n\t// Make sure select elements fit in widgets.\n\tselect {\n\t\tmax-width: 100%;\n\t}\n}\n"
  },
  {
    "path": "sass/generic/_box-sizing.scss",
    "content": "/* Inherit box-sizing to more easily change it's value on a component level.\n@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */\n*,\n*::before,\n*::after {\n\tbox-sizing: inherit;\n}\n\nhtml {\n\tbox-sizing: border-box;\n}\n"
  },
  {
    "path": "sass/generic/_normalize.scss",
    "content": "/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n\t ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n\tline-height: 1.15;\n\t-webkit-text-size-adjust: 100%;\n}\n\n/* Sections\n\t ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n\tmargin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n\tdisplay: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n\tfont-size: 2em;\n\tmargin: 0.67em 0;\n}\n\n/* Grouping content\n\t ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n\tbox-sizing: content-box;\n\theight: 0;\n\toverflow: visible;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n\tfont-family: monospace, monospace;\n\tfont-size: 1em;\n}\n\n/* Text-level semantics\n\t ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n\tbackground-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n\tborder-bottom: none;\n\ttext-decoration: underline;\n\ttext-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n\tfont-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n\tfont-family: monospace, monospace;\n\tfont-size: 1em;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n\tfont-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n\tfont-size: 75%;\n\tline-height: 0;\n\tposition: relative;\n\tvertical-align: baseline;\n}\n\nsub {\n\tbottom: -0.25em;\n}\n\nsup {\n\ttop: -0.5em;\n}\n\n/* Embedded content\n\t ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n\tborder-style: none;\n}\n\n/* Forms\n\t ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n\tfont-family: inherit;\n\tfont-size: 100%;\n\tline-height: 1.15;\n\tmargin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput {\n\toverflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect {\n\ttext-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n\t-webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n\tborder-style: none;\n\tpadding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n\toutline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n\tpadding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *\t\t`fieldset` elements in all browsers.\n */\n\nlegend {\n\tbox-sizing: border-box;\n\tcolor: inherit;\n\tdisplay: table;\n\tmax-width: 100%;\n\tpadding: 0;\n\twhite-space: normal;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n\tvertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n\toverflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n\tbox-sizing: border-box;\n\tpadding: 0;\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n\theight: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n\t-webkit-appearance: textfield;\n\toutline-offset: -2px;\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n\t-webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n\t-webkit-appearance: button;\n\tfont: inherit;\n}\n\n/* Interactive\n\t ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n\tdisplay: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n\tdisplay: list-item;\n}\n\n/* Misc\n\t ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n\tdisplay: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n\tdisplay: none;\n}\n"
  },
  {
    "path": "sass/layouts/_content-sidebar.scss",
    "content": ".site {\n\tdisplay: grid;\n\tgrid-template-columns: auto ($size__site-sidebar);\n\tgrid-template-areas:\n\t\t\"header header\"\n\t\t\"main sidebar\"\n\t\t\"footer footer\";\n}\n\n.site-header {\n\tgrid-area: header;\n}\n\n.site-main {\n\tgrid-area: main;\n\toverflow: hidden; /* Resolves issue with <pre> elements forcing full width. */\n}\n\n.widget-area {\n\tgrid-area: sidebar;\n}\n\n.site-footer {\n\tgrid-area: footer;\n}\n\n@import \"no-sidebar\";\n"
  },
  {
    "path": "sass/layouts/_no-sidebar.scss",
    "content": ".no-sidebar {\n\n\t.site {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: auto;\n\t\tgrid-template-areas:\n\t\t\t\"header\"\n\t\t\t\"main\"\n\t\t\t\"footer\";\n\t}\n}\n"
  },
  {
    "path": "sass/layouts/_sidebar-content.scss",
    "content": ".site {\n\tdisplay: grid;\n\tgrid-template-columns: ($size__site-sidebar) auto;\n\tgrid-template-areas:\n\t\t\"header header\"\n\t\t\"sidebar main\"\n\t\t\"footer footer\";\n}\n\n.site-header {\n\tgrid-area: header;\n}\n\n.site-main {\n\tgrid-area: main;\n\toverflow: hidden; /* Resolves issue with <pre> elements forcing full width. */\n}\n\n.widget-area {\n\tgrid-area: sidebar;\n}\n\n.site-footer {\n\tgrid-area: footer;\n}\n\n@import \"no-sidebar\";\n"
  },
  {
    "path": "sass/plugins/jetpack/_infinite-scroll.scss",
    "content": "/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */\n.infinite-scroll .posts-navigation,\n.infinite-scroll.neverending .site-footer {\n\tdisplay: none;\n}\n\n/* Re-display the Theme Footer when Infinite Scroll has reached its end. */\n.infinity-end.neverending .site-footer {\n\tdisplay: block;\n}\n"
  },
  {
    "path": "sass/plugins/woocommerce/_checkout.scss",
    "content": "@media screen and (min-width: 768px) {\n\n\t.col2-set {\n\n\t\t.form-row-first {\n\t\t\tfloat: left;\n\t\t\tmargin-right: $columns__margin;\n\t\t}\n\n\t\t.form-row-last {\n\t\t\tfloat: right;\n\t\t\tmargin-right: 0;\n\t\t}\n\n\t\t.form-row-first,\n\t\t.form-row-last {\n\n\t\t\t@include column-width(2);\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "sass/plugins/woocommerce/_components.scss",
    "content": "/**\n * Header cart\n */\n.site-header-cart {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 0;\n\n\t.cart-contents {\n\t\ttext-decoration: none;\n\t}\n\n\t.widget_shopping_cart {\n\t\tdisplay: none;\n\t}\n\n\t.product_list_widget {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n}\n\n/**\n * Star rating\n */\n.star-rating {\n\toverflow: hidden;\n\tposition: relative;\n\theight: 1.618em;\n\tline-height: 1.618;\n\twidth: 5.3em;\n\tfont-family: star;\n\tfont-weight: 400;\n\n\t&::before {\n\t\tcontent: \"\\53\\53\\53\\53\\53\";\n\t\topacity: 0.25;\n\t\tfloat: left;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tposition: absolute;\n\t}\n\n\tspan {\n\t\toverflow: hidden;\n\t\tfloat: left;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tposition: absolute;\n\t\tpadding-top: 1.5em;\n\t}\n\n\tspan::before {\n\t\tcontent: \"\\53\\53\\53\\53\\53\";\n\t\ttop: 0;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\tcolor: $color__link;\n\t}\n}\n\np.stars {\n\n\ta {\n\t\tposition: relative;\n\t\theight: 1em;\n\t\twidth: 1em;\n\t\ttext-indent: -999em;\n\t\tdisplay: inline-block;\n\t\ttext-decoration: none;\n\t\tmargin-right: 1px;\n\t\tfont-weight: 400;\n\n\t\t&::before {\n\n\t\t\tdisplay: block;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\twidth: 1em;\n\t\t\theight: 1em;\n\t\t\tline-height: 1;\n\t\t\tfont-family: star;\n\t\t\tcontent: \"\\53\";\n\t\t\tcolor: $color__text-main;\n\t\t\ttext-indent: 0;\n\t\t\topacity: 0.25;\n\t\t}\n\n\t\t&:hover {\n\n\t\t\t~ a::before {\n\t\t\t\tcontent: \"\\53\";\n\t\t\t\tcolor: $color__text-main;\n\t\t\t\topacity: 0.25;\n\t\t\t}\n\t\t}\n\t}\n\n\t&:hover {\n\n\t\ta {\n\n\t\t\t&::before {\n\t\t\t\tcontent: \"\\53\";\n\t\t\t\tcolor: $color__link;\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.selected {\n\n\t\ta.active {\n\n\t\t\t&::before {\n\t\t\t\tcontent: \"\\53\";\n\t\t\t\tcolor: $color__link;\n\t\t\t\topacity: 1;\n\t\t\t}\n\n\t\t\t~ a::before {\n\t\t\t\tcontent: \"\\53\";\n\t\t\t\tcolor: $color__text-main;\n\t\t\t\topacity: 0.25;\n\t\t\t}\n\t\t}\n\n\t\ta:not(.active) {\n\n\t\t\t&::before {\n\t\t\t\tcontent: \"\\53\";\n\t\t\t\tcolor: $color__link;\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/**\n * Tabs\n */\n.woocommerce-tabs {\n\n\tul.tabs {\n\t\tlist-style: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\ttext-align: left;\n\n\t\tli {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0;\n\t\t\tposition: relative;\n\n\t\t\ta {\n\t\t\t\tpadding: 1em 0;\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t}\n\n\t.panel {\n\n\t\th2:first-of-type {\n\t\t\tmargin-bottom: 1em;\n\t\t}\n\t}\n}\n\n/**\n * Password strength meter\n */\n.woocommerce-password-strength {\n\ttext-align: right;\n\n\t&.strong {\n\t\tcolor: $woocommerce__color-success;\n\t}\n\n\t&.short {\n\t\tcolor: $woocommerce__color-error;\n\t}\n\n\t&.bad {\n\t\tcolor: $woocommerce__color-error;\n\t}\n\n\t&.good {\n\t\tcolor: $woocommerce__color-info;\n\t}\n}\n\n/**\n * Forms\n */\n.form-row {\n\n\t&.woocommerce-validated {\n\n\t\tinput.input-text {\n\t\t\tbox-shadow: inset 2px 0 0 $woocommerce__color-success;\n\t\t}\n\t}\n\n\t&.woocommerce-invalid {\n\n\t\tinput.input-text {\n\t\t\tbox-shadow: inset 2px 0 0 $woocommerce__color-error;\n\t\t}\n\t}\n}\n\n.required {\n\tcolor: #f00;\n}\n\n/**\n * Notices\n */\n.woocommerce-message,\n.woocommerce-info,\n.woocommerce-error,\n.woocommerce-noreviews,\np.no-comments {\n\tbackground-color: $woocommerce__color-success;\n\tclear: both;\n}\n\n.woocommerce-info,\n.woocommerce-noreviews,\np.no-comments {\n\tbackground-color: $woocommerce__color-info;\n}\n\n.woocommerce-error {\n\tbackground-color: $woocommerce__color-error;\n}\n\n.demo_store {\n\tposition: fixed;\n\tleft: 0;\n\tbottom: 0;\n\tright: 0;\n\tmargin: 0;\n\tpadding: 1em;\n\tbackground-color: $woocommerce__color-info;\n\tz-index: 9999;\n}\n\n@media screen and (min-width: 48em) {\n\n\t/**\n\t * Header cart\n\t */\n\t.site-header-cart {\n\n\t\t.widget_shopping_cart {\n\t\t\tposition: absolute;\n\t\t\ttop: 100%;\n\t\t\twidth: 100%;\n\t\t\tz-index: 999999;\n\t\t\tleft: -999em;\n\t\t\tdisplay: block;\n\t\t\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);\n\t\t}\n\n\t\t&:hover,\n\t\t&.focus {\n\n\t\t\t.widget_shopping_cart {\n\t\t\t\tleft: 0;\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "sass/plugins/woocommerce/_products.scss",
    "content": "ul.products {\n\tmargin: 0;\n\tpadding: 0;\n\n\tli.product {\n\t\tlist-style: none;\n\t\tposition: relative;\n\t\tmargin-bottom: 2em;\n\n\t\timg {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.button {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n\n@media screen and (min-width: 48em) {\n\n\tul.products {\n\n\t\tli.product {\n\n\t\t\t@include column-width(3);\n\t\t\tfloat: left;\n\t\t\tmargin-right: $columns__margin;\n\n\t\t\t&.first {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t&.last {\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\tul.products.columns-1 {\n\n\t\tli.product {\n\t\t\tfloat: none;\n\t\t\twidth: 100%;\n\t\t}\n\n\t}\n\n\t@for $i from 2 through 6 {\n\n\t\tul.products.columns-#{$i} {\n\n\t\t\tli.product {\n\n\t\t\t\t@include column-width( $i );\n\t\t\t}\n\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "sass/plugins/woocommerce/_single-product.scss",
    "content": ".single-product {\n\n\tdiv.product {\n\t\tposition: relative;\n\n\t\t.woocommerce-product-gallery {\n\t\t\tposition: relative;\n\t\t\tfloat: left;\n\n\t\t\t.woocommerce-product-gallery__trigger {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 2em;\n\t\t\t\tright: 1em;\n\t\t\t\tdisplay: block;\n\t\t\t\tz-index: 99;\n\t\t\t}\n\n\t\t\t.flex-viewport {\n\t\t\t\tmargin-bottom: 1em;\n\t\t\t}\n\n\t\t\t.flex-control-thumbs {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tli {\n\t\t\t\t\tlist-style: none;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tfloat: left;\n\n\t\t\t\t\timg {\n\t\t\t\t\t\topacity: 0.5;\n\n\t\t\t\t\t\t&.flex-active {\n\t\t\t\t\t\t\topacity: 1;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t&:hover {\n\n\t\t\t\t\t\timg {\n\t\t\t\t\t\t\topacity: 1;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@for $i from 2 through 5 {\n\n\t\t\t\t&.woocommerce-product-gallery--columns-#{$i} {\n\n\t\t\t\t\t.flex-control-thumbs {\n\n\t\t\t\t\t\tli {\n\n\t\t\t\t\t\t\t@include column-width($i);\n\n\t\t\t\t\t\t\t&:nth-child(#{$i}n) {\n\t\t\t\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&:nth-child(#{$i}n+1) {\n\t\t\t\t\t\t\t\tclear: both;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.stock {\n\n\t&:empty::before {\n\t\tdisplay: none;\n\t}\n\n\t&.in-stock {\n\t\tcolor: $woocommerce__color-success;\n\t}\n\n\t&.out-of-stock {\n\t\tcolor: $woocommerce__color-error;\n\t}\n}\n"
  },
  {
    "path": "sass/plugins/woocommerce/_tables.scss",
    "content": "table.shop_table_responsive {\n\n\tthead {\n\t\tdisplay: none;\n\t}\n\n\ttbody {\n\n\t\tth {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\ttr {\n\n\t\ttd {\n\t\t\tdisplay: block;\n\t\t\ttext-align: right;\n\t\t\tclear: both;\n\n\t\t\t&::before {\n\t\t\t\tcontent: attr(data-title) \": \";\n\t\t\t\tfloat: left;\n\t\t\t}\n\n\t\t\t&.product-remove {\n\n\t\t\t\ta {\n\t\t\t\t\ttext-align: left;\n\t\t\t\t}\n\n\t\t\t\t&::before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.actions,\n\t\t\t&.download-actions {\n\n\t\t\t\t&::before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.download-actions {\n\n\t\t\t\t.button {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n@media screen and (min-width: 48em) {\n\n\ttable.shop_table_responsive {\n\n\t\tthead {\n\t\t\tdisplay: table-header-group;\n\t\t}\n\n\t\ttbody {\n\n\t\t\tth {\n\t\t\t\tdisplay: table-cell;\n\t\t\t}\n\t\t}\n\n\t\ttr {\n\n\t\t\tth,\n\t\t\ttd {\n\t\t\t\ttext-align: left;\n\t\t\t}\n\n\t\t\ttd {\n\t\t\t\tdisplay: table-cell;\n\n\t\t\t\t&::before {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "sass/plugins/woocommerce/_widgets.scss",
    "content": "/**\n * WooCommerce Price Filter\n */\n.widget_price_filter {\n\n\t.price_slider {\n\t\tmargin-bottom: 1.5em;\n\t}\n\n\t.price_slider_amount {\n\t\ttext-align: right;\n\t\tline-height: 2.4;\n\n\t\t.button {\n\t\t\tfloat: left;\n\t\t}\n\t}\n\n\t.ui-slider {\n\t\tposition: relative;\n\t\ttext-align: left;\n\t}\n\n\t.ui-slider .ui-slider-handle {\n\t\tposition: absolute;\n\t\tz-index: 2;\n\t\twidth: 1em;\n\t\theight: 1em;\n\t\tcursor: ew-resize;\n\t\toutline: none;\n\t\tbackground: $color__link;\n\t\tbox-sizing: border-box;\n\t\tmargin-top: -0.25em;\n\t\topacity: 1;\n\n\t\t&:last-child {\n\t\t\tmargin-left: -1em;\n\t\t}\n\n\t\t&:hover,\n\t\t&.ui-state-active {\n\t\t\tbox-shadow: 0 0 0 0.25em rgba(#000, 0.1);\n\t\t}\n\t}\n\n\t.ui-slider .ui-slider-range {\n\t\tposition: absolute;\n\t\tz-index: 1;\n\t\tdisplay: block;\n\t\tborder: 0;\n\t\tbackground: $color__link;\n\t}\n\n\t.price_slider_wrapper .ui-widget-content {\n\t\tbackground: rgba(0, 0, 0, 0.1);\n\t}\n\n\t.ui-slider-horizontal {\n\t\theight: 0.5em;\n\t}\n\n\t.ui-slider-horizontal .ui-slider-range {\n\t\theight: 100%;\n\t}\n}\n"
  },
  {
    "path": "sass/style.scss",
    "content": "/*!\nTheme Name: _s\nTheme URI: https://underscores.me/\nAuthor: Automattic\nAuthor URI: https://automattic.com/\nDescription: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\nVersion: 1.0.0\nTested up to: 5.4\nRequires PHP: 5.6\nLicense: GNU General Public License v2 or later\nLicense URI: LICENSE\nText Domain: _s\nTags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n\nThis theme, like WordPress, is licensed under the GPL.\nUse it to make something cool, have fun, and share what you've learned.\n\n_s is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.\nUnderscores is distributed under the terms of the GNU GPL v2 or later.\n\nNormalizing styles have been helped along thanks to the fine work of\nNicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n*/\n\n/*--------------------------------------------------------------\n>>> TABLE OF CONTENTS:\n----------------------------------------------------------------\n# Generic\n\t- Normalize\n\t- Box sizing\n# Base\n\t- Typography\n\t- Elements\n\t- Links\n\t- Forms\n## Layouts\n# Components\n\t- Navigation\n\t- Posts and pages\n\t- Comments\n\t- Widgets\n\t- Media\n\t- Captions\n\t- Galleries\n# plugins\n\t- Jetpack infinite scroll\n# Utilities\n\t- Accessibility\n\t- Alignments\n\n--------------------------------------------------------------*/\n\n// Import variables and mixins.\n@import \"abstracts/abstracts\";\n\n/*--------------------------------------------------------------\n# Generic\n--------------------------------------------------------------*/\n\n/* Normalize\n--------------------------------------------- */\n@import \"generic/normalize\";\n\n/* Box sizing\n--------------------------------------------- */\n@import \"generic/box-sizing\";\n\n/*--------------------------------------------------------------\n# Base\n--------------------------------------------------------------*/\n@import \"base/base\";\n\n/*--------------------------------------------------------------\n# Layouts\n--------------------------------------------------------------*/\n// @import \"layouts/content-sidebar\"; // Uncomment this line for a sidebar on right side of your content.\n// @import \"layouts/sidebar-content\"; // Uncomment this line for a sidebar on left side of your content.\n\n/*--------------------------------------------------------------\n# Components\n--------------------------------------------------------------*/\n@import \"components/components\";\n\n/*--------------------------------------------------------------\n# Plugins\n--------------------------------------------------------------*/\n\n/* Jetpack infinite scroll\n--------------------------------------------- */\n@import \"plugins/jetpack/infinite-scroll\";\n\n/*--------------------------------------------------------------\n# Utilities\n--------------------------------------------------------------*/\n\n/* Accessibility\n--------------------------------------------- */\n@import \"utilities/accessibility\";\n\n/* Alignments\n--------------------------------------------- */\n@import \"utilities/alignments\";\n"
  },
  {
    "path": "sass/utilities/_accessibility.scss",
    "content": "/* Text meant only for screen readers. */\n.screen-reader-text {\n\tborder: 0;\n\tclip: rect(1px, 1px, 1px, 1px);\n\tclip-path: inset(50%);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute !important;\n\twidth: 1px;\n\tword-wrap: normal !important; // Many screen reader and browser combinations announce broken words as they would appear visually.\n\n\t&:focus {\n\t\tbackground-color: $color__background-screen;\n\t\tborder-radius: 3px;\n\t\tbox-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n\t\tclip: auto !important;\n\t\tclip-path: none;\n\t\tcolor: $color__text-screen;\n\t\tdisplay: block;\n\t\tfont-size: 0.875rem;\n\t\tfont-weight: 700;\n\t\theight: auto;\n\t\tleft: 5px;\n\t\tline-height: normal;\n\t\tpadding: 15px 23px 14px;\n\t\ttext-decoration: none;\n\t\ttop: 5px;\n\t\twidth: auto;\n\t\tz-index: 100000; // Above WP toolbar.\n\t}\n}\n\n/* Do not show the outline on the skip link target. */\n#primary[tabindex=\"-1\"]:focus {\n\toutline: 0;\n}\n"
  },
  {
    "path": "sass/utilities/_alignments.scss",
    "content": ".alignleft {\n\n\t/*rtl:ignore*/\n\tfloat: left;\n\n\t/*rtl:ignore*/\n\tmargin-right: 1.5em;\n\tmargin-bottom: 1.5em;\n}\n\n.alignright {\n\n\t/*rtl:ignore*/\n\tfloat: right;\n\n\t/*rtl:ignore*/\n\tmargin-left: 1.5em;\n\tmargin-bottom: 1.5em;\n}\n\n.aligncenter {\n\tclear: both;\n\n\t@include center-block;\n\n\tmargin-bottom: 1.5em;\n}\n"
  },
  {
    "path": "sass/woocommerce.scss",
    "content": "/*\nTheme Name: _s\n\nWooCommerce styles override\n*/\n\n// WooCommerce color variables\n$woocommerce__color-error: #e2401c;\n$woocommerce__color-success: #0f834d;\n$woocommerce__color-info: #3d9cd2;\n\n// Import variables and mixins\n@import \"abstracts/abstracts\";\n\n/**\n * Shop tables\n */\n@import \"plugins/woocommerce/tables\";\n\n/**\n * Products\n */\n@import \"plugins/woocommerce/products\";\n\n/**\n * Single product\n */\n@import \"plugins/woocommerce/single-product\";\n\n/**\n * Checkout\n */\n@import \"plugins/woocommerce/checkout\";\n\n/**\n * General WooCommerce components\n */\n@import \"plugins/woocommerce/components\";\n\n/**\n * WooCommerce widgets\n */\n@import \"plugins/woocommerce/widgets\";\n"
  },
  {
    "path": "search.php",
    "content": "<?php\n/**\n * The template for displaying search results pages\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result\n *\n * @package _s\n */\n\nget_header();\n?>\n\n\t<main id=\"primary\" class=\"site-main\">\n\n\t\t<?php if ( have_posts() ) : ?>\n\n\t\t\t<header class=\"page-header\">\n\t\t\t\t<h1 class=\"page-title\">\n\t\t\t\t\t<?php\n\t\t\t\t\t/* translators: %s: search query. */\n\t\t\t\t\tprintf( esc_html__( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' );\n\t\t\t\t\t?>\n\t\t\t\t</h1>\n\t\t\t</header><!-- .page-header -->\n\n\t\t\t<?php\n\t\t\t/* Start the Loop */\n\t\t\twhile ( have_posts() ) :\n\t\t\t\tthe_post();\n\n\t\t\t\t/**\n\t\t\t\t * Run the loop for the search to output the results.\n\t\t\t\t * If you want to overload this in a child theme then include a file\n\t\t\t\t * called content-search.php and that will be used instead.\n\t\t\t\t */\n\t\t\t\tget_template_part( 'template-parts/content', 'search' );\n\n\t\t\tendwhile;\n\n\t\t\tthe_posts_navigation();\n\n\t\telse :\n\n\t\t\tget_template_part( 'template-parts/content', 'none' );\n\n\t\tendif;\n\t\t?>\n\n\t</main><!-- #main -->\n\n<?php\nget_sidebar();\nget_footer();\n"
  },
  {
    "path": "sidebar.php",
    "content": "<?php\n/**\n * The sidebar containing the main widget area\n *\n * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials\n *\n * @package _s\n */\n\nif ( ! is_active_sidebar( 'sidebar-1' ) ) {\n\treturn;\n}\n?>\n\n<aside id=\"secondary\" class=\"widget-area\">\n\t<?php dynamic_sidebar( 'sidebar-1' ); ?>\n</aside><!-- #secondary -->\n"
  },
  {
    "path": "single.php",
    "content": "<?php\n/**\n * The template for displaying all single posts\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post\n *\n * @package _s\n */\n\nget_header();\n?>\n\n\t<main id=\"primary\" class=\"site-main\">\n\n\t\t<?php\n\t\twhile ( have_posts() ) :\n\t\t\tthe_post();\n\n\t\t\tget_template_part( 'template-parts/content', get_post_type() );\n\n\t\t\tthe_post_navigation(\n\t\t\t\tarray(\n\t\t\t\t\t'prev_text' => '<span class=\"nav-subtitle\">' . esc_html__( 'Previous:', '_s' ) . '</span> <span class=\"nav-title\">%title</span>',\n\t\t\t\t\t'next_text' => '<span class=\"nav-subtitle\">' . esc_html__( 'Next:', '_s' ) . '</span> <span class=\"nav-title\">%title</span>',\n\t\t\t\t)\n\t\t\t);\n\n\t\t\t// If comments are open or we have at least one comment, load up the comment template.\n\t\t\tif ( comments_open() || get_comments_number() ) :\n\t\t\t\tcomments_template();\n\t\t\tendif;\n\n\t\tendwhile; // End of the loop.\n\t\t?>\n\n\t</main><!-- #main -->\n\n<?php\nget_sidebar();\nget_footer();\n"
  },
  {
    "path": "style-rtl.css",
    "content": "/*!\nTheme Name: _s\nTheme URI: https://underscores.me/\nAuthor: Automattic\nAuthor URI: https://automattic.com/\nDescription: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\nVersion: 1.0.0\nTested up to: 5.4\nRequires PHP: 5.6\nLicense: GNU General Public License v2 or later\nLicense URI: LICENSE\nText Domain: _s\nTags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n\nThis theme, like WordPress, is licensed under the GPL.\nUse it to make something cool, have fun, and share what you've learned.\n\n_s is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.\nUnderscores is distributed under the terms of the GNU GPL v2 or later.\n\nNormalizing styles have been helped along thanks to the fine work of\nNicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n*/\n\n/*--------------------------------------------------------------\n>>> TABLE OF CONTENTS:\n----------------------------------------------------------------\n# Generic\n\t- Normalize\n\t- Box sizing\n# Base\n\t- Typography\n\t- Elements\n\t- Links\n\t- Forms\n## Layouts\n# Components\n\t- Navigation\n\t- Posts and pages\n\t- Comments\n\t- Widgets\n\t- Media\n\t- Captions\n\t- Galleries\n# plugins\n\t- Jetpack infinite scroll\n# Utilities\n\t- Accessibility\n\t- Alignments\n\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n# Generic\n--------------------------------------------------------------*/\n\n/* Normalize\n--------------------------------------------- */\n\n/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n\t ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\nhtml {\n\tline-height: 1.15;\n\t-webkit-text-size-adjust: 100%;\n}\n\n/* Sections\n\t ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\nbody {\n\tmargin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\nmain {\n\tdisplay: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\nh1 {\n\tfont-size: 2em;\n\tmargin: 0.67em 0;\n}\n\n/* Grouping content\n\t ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\nhr {\n\tbox-sizing: content-box;\n\theight: 0;\n\toverflow: visible;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\npre {\n\tfont-family: monospace, monospace;\n\tfont-size: 1em;\n}\n\n/* Text-level semantics\n\t ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\na {\n\tbackground-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\nabbr[title] {\n\tborder-bottom: none;\n\ttext-decoration: underline;\n\ttext-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\nb,\nstrong {\n\tfont-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\ncode,\nkbd,\nsamp {\n\tfont-family: monospace, monospace;\n\tfont-size: 1em;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\nsmall {\n\tfont-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\nsub,\nsup {\n\tfont-size: 75%;\n\tline-height: 0;\n\tposition: relative;\n\tvertical-align: baseline;\n}\n\nsub {\n\tbottom: -0.25em;\n}\n\nsup {\n\ttop: -0.5em;\n}\n\n/* Embedded content\n\t ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\nimg {\n\tborder-style: none;\n}\n\n/* Forms\n\t ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n\tfont-family: inherit;\n\tfont-size: 100%;\n\tline-height: 1.15;\n\tmargin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput {\n\toverflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect {\n\ttext-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n\t-webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n\tborder-style: none;\n\tpadding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n\toutline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\nfieldset {\n\tpadding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *\t\t`fieldset` elements in all browsers.\n */\nlegend {\n\tbox-sizing: border-box;\n\tcolor: inherit;\n\tdisplay: table;\n\tmax-width: 100%;\n\tpadding: 0;\n\twhite-space: normal;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n\tvertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\ntextarea {\n\toverflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n[type=\"checkbox\"],\n[type=\"radio\"] {\n\tbox-sizing: border-box;\n\tpadding: 0;\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n\theight: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n[type=\"search\"] {\n\t-webkit-appearance: textfield;\n\toutline-offset: -2px;\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n[type=\"search\"]::-webkit-search-decoration {\n\t-webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n\t-webkit-appearance: button;\n\tfont: inherit;\n}\n\n/* Interactive\n\t ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\ndetails {\n\tdisplay: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\nsummary {\n\tdisplay: list-item;\n}\n\n/* Misc\n\t ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\ntemplate {\n\tdisplay: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n[hidden] {\n\tdisplay: none;\n}\n\n/* Box sizing\n--------------------------------------------- */\n\n/* Inherit box-sizing to more easily change it's value on a component level.\n@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */\n*,\n*::before,\n*::after {\n\tbox-sizing: inherit;\n}\n\nhtml {\n\tbox-sizing: border-box;\n}\n\n/*--------------------------------------------------------------\n# Base\n--------------------------------------------------------------*/\n\n/* Typography\n--------------------------------------------- */\nbody,\nbutton,\ninput,\nselect,\noptgroup,\ntextarea {\n\tcolor: #404040;\n\tfont-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n\tfont-size: 1rem;\n\tline-height: 1.5;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n\tclear: both;\n}\n\np {\n\tmargin-bottom: 1.5em;\n}\n\ndfn,\ncite,\nem,\ni {\n\tfont-style: italic;\n}\n\nblockquote {\n\tmargin: 0 1.5em;\n}\n\naddress {\n\tmargin: 0 0 1.5em;\n}\n\npre {\n\tbackground: #eee;\n\tfont-family: \"Courier 10 Pitch\", courier, monospace;\n\tline-height: 1.6;\n\tmargin-bottom: 1.6em;\n\tmax-width: 100%;\n\toverflow: auto;\n\tpadding: 1.6em;\n}\n\ncode,\nkbd,\ntt,\nvar {\n\tfont-family: monaco, consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n}\n\nabbr,\nacronym {\n\tborder-bottom: 1px dotted #666;\n\tcursor: help;\n}\n\nmark,\nins {\n\tbackground: #fff9c0;\n\ttext-decoration: none;\n}\n\nbig {\n\tfont-size: 125%;\n}\n\n/* Elements\n--------------------------------------------- */\nbody {\n\tbackground: #fff;\n}\n\nhr {\n\tbackground-color: #ccc;\n\tborder: 0;\n\theight: 1px;\n\tmargin-bottom: 1.5em;\n}\n\nul,\nol {\n\tmargin: 0 3em 1.5em 0;\n}\n\nul {\n\tlist-style: disc;\n}\n\nol {\n\tlist-style: decimal;\n}\n\nli > ul,\nli > ol {\n\tmargin-bottom: 0;\n\tmargin-right: 1.5em;\n}\n\ndt {\n\tfont-weight: 700;\n}\n\ndd {\n\tmargin: 0 1.5em 1.5em;\n}\n\n/* Make sure embeds and iframes fit their containers. */\nembed,\niframe,\nobject {\n\tmax-width: 100%;\n}\n\nimg {\n\theight: auto;\n\tmax-width: 100%;\n}\n\nfigure {\n\tmargin: 1em 0;\n}\n\ntable {\n\tmargin: 0 0 1.5em;\n\twidth: 100%;\n}\n\n/* Links\n--------------------------------------------- */\na {\n\tcolor: #4169e1;\n}\n\na:visited {\n\tcolor: #800080;\n}\n\na:hover,\na:focus,\na:active {\n\tcolor: #191970;\n}\n\na:focus {\n\toutline: thin dotted;\n}\n\na:hover,\na:active {\n\toutline: 0;\n}\n\n/* Forms\n--------------------------------------------- */\nbutton,\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n\tborder: 1px solid;\n\tborder-color: #ccc #ccc #bbb;\n\tborder-radius: 3px;\n\tbackground: #e6e6e6;\n\tcolor: rgba(0, 0, 0, 0.8);\n\tline-height: 1;\n\tpadding: 0.6em 1em 0.4em;\n}\n\nbutton:hover,\ninput[type=\"button\"]:hover,\ninput[type=\"reset\"]:hover,\ninput[type=\"submit\"]:hover {\n\tborder-color: #ccc #bbb #aaa;\n}\n\nbutton:active,\nbutton:focus,\ninput[type=\"button\"]:active,\ninput[type=\"button\"]:focus,\ninput[type=\"reset\"]:active,\ninput[type=\"reset\"]:focus,\ninput[type=\"submit\"]:active,\ninput[type=\"submit\"]:focus {\n\tborder-color: #aaa #bbb #bbb;\n}\n\ninput[type=\"text\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"password\"],\ninput[type=\"search\"],\ninput[type=\"number\"],\ninput[type=\"tel\"],\ninput[type=\"range\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"week\"],\ninput[type=\"time\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"color\"],\ntextarea {\n\tcolor: #666;\n\tborder: 1px solid #ccc;\n\tborder-radius: 3px;\n\tpadding: 3px;\n}\n\ninput[type=\"text\"]:focus,\ninput[type=\"email\"]:focus,\ninput[type=\"url\"]:focus,\ninput[type=\"password\"]:focus,\ninput[type=\"search\"]:focus,\ninput[type=\"number\"]:focus,\ninput[type=\"tel\"]:focus,\ninput[type=\"range\"]:focus,\ninput[type=\"date\"]:focus,\ninput[type=\"month\"]:focus,\ninput[type=\"week\"]:focus,\ninput[type=\"time\"]:focus,\ninput[type=\"datetime\"]:focus,\ninput[type=\"datetime-local\"]:focus,\ninput[type=\"color\"]:focus,\ntextarea:focus {\n\tcolor: #111;\n}\n\nselect {\n\tborder: 1px solid #ccc;\n}\n\ntextarea {\n\twidth: 100%;\n}\n\n/*--------------------------------------------------------------\n# Layouts\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n# Components\n--------------------------------------------------------------*/\n\n/* Navigation\n--------------------------------------------- */\n.main-navigation {\n\tdisplay: block;\n\twidth: 100%;\n}\n\n.main-navigation ul {\n\tdisplay: none;\n\tlist-style: none;\n\tmargin: 0;\n\tpadding-right: 0;\n}\n\n.main-navigation ul ul {\n\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);\n\tfloat: right;\n\tposition: absolute;\n\ttop: 100%;\n\tright: -999em;\n\tz-index: 99999;\n}\n\n.main-navigation ul ul ul {\n\tright: -999em;\n\ttop: 0;\n}\n\n.main-navigation ul ul li:hover > ul,\n.main-navigation ul ul li.focus > ul {\n\tdisplay: block;\n\tright: auto;\n}\n\n.main-navigation ul ul a {\n\twidth: 200px;\n}\n\n.main-navigation ul li:hover > ul,\n.main-navigation ul li.focus > ul {\n\tright: auto;\n}\n\n.main-navigation li {\n\tposition: relative;\n}\n\n.main-navigation a {\n\tdisplay: block;\n\ttext-decoration: none;\n}\n\n/* Small menu. */\n.menu-toggle,\n.main-navigation.toggled ul {\n\tdisplay: block;\n}\n\n@media screen and (min-width: 37.5em) {\n\n\t.menu-toggle {\n\t\tdisplay: none;\n\t}\n\n\t.main-navigation ul {\n\t\tdisplay: flex;\n\t}\n}\n\n.site-main .comment-navigation,\n.site-main\n.posts-navigation,\n.site-main\n.post-navigation {\n\tmargin: 0 0 1.5em;\n}\n\n.comment-navigation .nav-links,\n.posts-navigation .nav-links,\n.post-navigation .nav-links {\n\tdisplay: flex;\n}\n\n.comment-navigation .nav-previous,\n.posts-navigation .nav-previous,\n.post-navigation .nav-previous {\n\tflex: 1 0 50%;\n}\n\n.comment-navigation .nav-next,\n.posts-navigation .nav-next,\n.post-navigation .nav-next {\n\ttext-align: end;\n\tflex: 1 0 50%;\n}\n\n/* Posts and pages\n--------------------------------------------- */\n.sticky {\n\tdisplay: block;\n}\n\n.post,\n.page {\n\tmargin: 0 0 1.5em;\n}\n\n.updated:not(.published) {\n\tdisplay: none;\n}\n\n.page-content,\n.entry-content,\n.entry-summary {\n\tmargin: 1.5em 0 0;\n}\n\n.page-links {\n\tclear: both;\n\tmargin: 0 0 1.5em;\n}\n\n/* Comments\n--------------------------------------------- */\n.comment-content a {\n\tword-wrap: break-word;\n}\n\n.bypostauthor {\n\tdisplay: block;\n}\n\n/* Widgets\n--------------------------------------------- */\n.widget {\n\tmargin: 0 0 1.5em;\n}\n\n.widget select {\n\tmax-width: 100%;\n}\n\n/* Media\n--------------------------------------------- */\n.page-content .wp-smiley,\n.entry-content .wp-smiley,\n.comment-content .wp-smiley {\n\tborder: none;\n\tmargin-bottom: 0;\n\tmargin-top: 0;\n\tpadding: 0;\n}\n\n/* Make sure logo link wraps around logo image. */\n.custom-logo-link {\n\tdisplay: inline-block;\n}\n\n/* Captions\n--------------------------------------------- */\n.wp-caption {\n\tmargin-bottom: 1.5em;\n\tmax-width: 100%;\n}\n\n.wp-caption img[class*=\"wp-image-\"] {\n\tdisplay: block;\n\tmargin-right: auto;\n\tmargin-left: auto;\n}\n\n.wp-caption .wp-caption-text {\n\tmargin: 0.8075em 0;\n}\n\n.wp-caption-text {\n\ttext-align: center;\n}\n\n/* Galleries\n--------------------------------------------- */\n.gallery {\n\tmargin-bottom: 1.5em;\n\tdisplay: grid;\n\tgrid-gap: 1.5em;\n}\n\n.gallery-item {\n\tdisplay: inline-block;\n\ttext-align: center;\n\twidth: 100%;\n}\n\n.gallery-columns-2 {\n\tgrid-template-columns: repeat(2, 1fr);\n}\n\n.gallery-columns-3 {\n\tgrid-template-columns: repeat(3, 1fr);\n}\n\n.gallery-columns-4 {\n\tgrid-template-columns: repeat(4, 1fr);\n}\n\n.gallery-columns-5 {\n\tgrid-template-columns: repeat(5, 1fr);\n}\n\n.gallery-columns-6 {\n\tgrid-template-columns: repeat(6, 1fr);\n}\n\n.gallery-columns-7 {\n\tgrid-template-columns: repeat(7, 1fr);\n}\n\n.gallery-columns-8 {\n\tgrid-template-columns: repeat(8, 1fr);\n}\n\n.gallery-columns-9 {\n\tgrid-template-columns: repeat(9, 1fr);\n}\n\n.gallery-caption {\n\tdisplay: block;\n}\n\n/*--------------------------------------------------------------\n# Plugins\n--------------------------------------------------------------*/\n\n/* Jetpack infinite scroll\n--------------------------------------------- */\n\n/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */\n.infinite-scroll .posts-navigation,\n.infinite-scroll.neverending .site-footer {\n\tdisplay: none;\n}\n\n/* Re-display the Theme Footer when Infinite Scroll has reached its end. */\n.infinity-end.neverending .site-footer {\n\tdisplay: block;\n}\n\n/*--------------------------------------------------------------\n# Utilities\n--------------------------------------------------------------*/\n\n/* Accessibility\n--------------------------------------------- */\n\n/* Text meant only for screen readers. */\n.screen-reader-text {\n\tborder: 0;\n\tclip: rect(1px, 1px, 1px, 1px);\n\tclip-path: inset(50%);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute !important;\n\twidth: 1px;\n\tword-wrap: normal !important;\n}\n\n.screen-reader-text:focus {\n\tbackground-color: #f1f1f1;\n\tborder-radius: 3px;\n\tbox-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n\tclip: auto !important;\n\tclip-path: none;\n\tcolor: #21759b;\n\tdisplay: block;\n\tfont-size: 0.875rem;\n\tfont-weight: 700;\n\theight: auto;\n\tright: 5px;\n\tline-height: normal;\n\tpadding: 15px 23px 14px;\n\ttext-decoration: none;\n\ttop: 5px;\n\twidth: auto;\n\tz-index: 100000;\n}\n\n/* Do not show the outline on the skip link target. */\n#primary[tabindex=\"-1\"]:focus {\n\toutline: 0;\n}\n\n/* Alignments\n--------------------------------------------- */\n.alignleft {\n\tfloat: left;\n\tmargin-right: 1.5em;\n\tmargin-bottom: 1.5em;\n}\n\n.alignright {\n\tfloat: right;\n\tmargin-left: 1.5em;\n\tmargin-bottom: 1.5em;\n}\n\n.aligncenter {\n\tclear: both;\n\tdisplay: block;\n\tmargin-right: auto;\n\tmargin-left: auto;\n\tmargin-bottom: 1.5em;\n}\n"
  },
  {
    "path": "style.css",
    "content": "/*!\nTheme Name: _s\nTheme URI: https://underscores.me/\nAuthor: Automattic\nAuthor URI: https://automattic.com/\nDescription: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\nVersion: 1.0.0\nTested up to: 5.4\nRequires PHP: 5.6\nLicense: GNU General Public License v2 or later\nLicense URI: LICENSE\nText Domain: _s\nTags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n\nThis theme, like WordPress, is licensed under the GPL.\nUse it to make something cool, have fun, and share what you've learned.\n\n_s is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.\nUnderscores is distributed under the terms of the GNU GPL v2 or later.\n\nNormalizing styles have been helped along thanks to the fine work of\nNicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n*/\n\n/*--------------------------------------------------------------\n>>> TABLE OF CONTENTS:\n----------------------------------------------------------------\n# Generic\n\t- Normalize\n\t- Box sizing\n# Base\n\t- Typography\n\t- Elements\n\t- Links\n\t- Forms\n## Layouts\n# Components\n\t- Navigation\n\t- Posts and pages\n\t- Comments\n\t- Widgets\n\t- Media\n\t- Captions\n\t- Galleries\n# plugins\n\t- Jetpack infinite scroll\n# Utilities\n\t- Accessibility\n\t- Alignments\n\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n# Generic\n--------------------------------------------------------------*/\n\n/* Normalize\n--------------------------------------------- */\n\n/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n\t ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\nhtml {\n\tline-height: 1.15;\n\t-webkit-text-size-adjust: 100%;\n}\n\n/* Sections\n\t ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\nbody {\n\tmargin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\nmain {\n\tdisplay: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\nh1 {\n\tfont-size: 2em;\n\tmargin: 0.67em 0;\n}\n\n/* Grouping content\n\t ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\nhr {\n\tbox-sizing: content-box;\n\theight: 0;\n\toverflow: visible;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\npre {\n\tfont-family: monospace, monospace;\n\tfont-size: 1em;\n}\n\n/* Text-level semantics\n\t ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\na {\n\tbackground-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\nabbr[title] {\n\tborder-bottom: none;\n\ttext-decoration: underline;\n\ttext-decoration: underline dotted;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\nb,\nstrong {\n\tfont-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\ncode,\nkbd,\nsamp {\n\tfont-family: monospace, monospace;\n\tfont-size: 1em;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\nsmall {\n\tfont-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\nsub,\nsup {\n\tfont-size: 75%;\n\tline-height: 0;\n\tposition: relative;\n\tvertical-align: baseline;\n}\n\nsub {\n\tbottom: -0.25em;\n}\n\nsup {\n\ttop: -0.5em;\n}\n\n/* Embedded content\n\t ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\nimg {\n\tborder-style: none;\n}\n\n/* Forms\n\t ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n\tfont-family: inherit;\n\tfont-size: 100%;\n\tline-height: 1.15;\n\tmargin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput {\n\toverflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect {\n\ttext-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n\t-webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n\tborder-style: none;\n\tpadding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n\toutline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\nfieldset {\n\tpadding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *\t\t`fieldset` elements in all browsers.\n */\nlegend {\n\tbox-sizing: border-box;\n\tcolor: inherit;\n\tdisplay: table;\n\tmax-width: 100%;\n\tpadding: 0;\n\twhite-space: normal;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n\tvertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\ntextarea {\n\toverflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n[type=\"checkbox\"],\n[type=\"radio\"] {\n\tbox-sizing: border-box;\n\tpadding: 0;\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n\theight: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n[type=\"search\"] {\n\t-webkit-appearance: textfield;\n\toutline-offset: -2px;\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n[type=\"search\"]::-webkit-search-decoration {\n\t-webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n\t-webkit-appearance: button;\n\tfont: inherit;\n}\n\n/* Interactive\n\t ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\ndetails {\n\tdisplay: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\nsummary {\n\tdisplay: list-item;\n}\n\n/* Misc\n\t ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\ntemplate {\n\tdisplay: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n[hidden] {\n\tdisplay: none;\n}\n\n/* Box sizing\n--------------------------------------------- */\n\n/* Inherit box-sizing to more easily change it's value on a component level.\n@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */\n*,\n*::before,\n*::after {\n\tbox-sizing: inherit;\n}\n\nhtml {\n\tbox-sizing: border-box;\n}\n\n/*--------------------------------------------------------------\n# Base\n--------------------------------------------------------------*/\n\n/* Typography\n--------------------------------------------- */\nbody,\nbutton,\ninput,\nselect,\noptgroup,\ntextarea {\n\tcolor: #404040;\n\tfont-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n\tfont-size: 1rem;\n\tline-height: 1.5;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n\tclear: both;\n}\n\np {\n\tmargin-bottom: 1.5em;\n}\n\ndfn,\ncite,\nem,\ni {\n\tfont-style: italic;\n}\n\nblockquote {\n\tmargin: 0 1.5em;\n}\n\naddress {\n\tmargin: 0 0 1.5em;\n}\n\npre {\n\tbackground: #eee;\n\tfont-family: \"Courier 10 Pitch\", courier, monospace;\n\tline-height: 1.6;\n\tmargin-bottom: 1.6em;\n\tmax-width: 100%;\n\toverflow: auto;\n\tpadding: 1.6em;\n}\n\ncode,\nkbd,\ntt,\nvar {\n\tfont-family: monaco, consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n}\n\nabbr,\nacronym {\n\tborder-bottom: 1px dotted #666;\n\tcursor: help;\n}\n\nmark,\nins {\n\tbackground: #fff9c0;\n\ttext-decoration: none;\n}\n\nbig {\n\tfont-size: 125%;\n}\n\n/* Elements\n--------------------------------------------- */\nbody {\n\tbackground: #fff;\n}\n\nhr {\n\tbackground-color: #ccc;\n\tborder: 0;\n\theight: 1px;\n\tmargin-bottom: 1.5em;\n}\n\nul,\nol {\n\tmargin: 0 0 1.5em 3em;\n}\n\nul {\n\tlist-style: disc;\n}\n\nol {\n\tlist-style: decimal;\n}\n\nli > ul,\nli > ol {\n\tmargin-bottom: 0;\n\tmargin-left: 1.5em;\n}\n\ndt {\n\tfont-weight: 700;\n}\n\ndd {\n\tmargin: 0 1.5em 1.5em;\n}\n\n/* Make sure embeds and iframes fit their containers. */\nembed,\niframe,\nobject {\n\tmax-width: 100%;\n}\n\nimg {\n\theight: auto;\n\tmax-width: 100%;\n}\n\nfigure {\n\tmargin: 1em 0;\n}\n\ntable {\n\tmargin: 0 0 1.5em;\n\twidth: 100%;\n}\n\n/* Links\n--------------------------------------------- */\na {\n\tcolor: #4169e1;\n}\n\na:visited {\n\tcolor: #800080;\n}\n\na:hover,\na:focus,\na:active {\n\tcolor: #191970;\n}\n\na:focus {\n\toutline: thin dotted;\n}\n\na:hover,\na:active {\n\toutline: 0;\n}\n\n/* Forms\n--------------------------------------------- */\nbutton,\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n\tborder: 1px solid;\n\tborder-color: #ccc #ccc #bbb;\n\tborder-radius: 3px;\n\tbackground: #e6e6e6;\n\tcolor: rgba(0, 0, 0, 0.8);\n\tline-height: 1;\n\tpadding: 0.6em 1em 0.4em;\n}\n\nbutton:hover,\ninput[type=\"button\"]:hover,\ninput[type=\"reset\"]:hover,\ninput[type=\"submit\"]:hover {\n\tborder-color: #ccc #bbb #aaa;\n}\n\nbutton:active,\nbutton:focus,\ninput[type=\"button\"]:active,\ninput[type=\"button\"]:focus,\ninput[type=\"reset\"]:active,\ninput[type=\"reset\"]:focus,\ninput[type=\"submit\"]:active,\ninput[type=\"submit\"]:focus {\n\tborder-color: #aaa #bbb #bbb;\n}\n\ninput[type=\"text\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"password\"],\ninput[type=\"search\"],\ninput[type=\"number\"],\ninput[type=\"tel\"],\ninput[type=\"range\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"week\"],\ninput[type=\"time\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"color\"],\ntextarea {\n\tcolor: #666;\n\tborder: 1px solid #ccc;\n\tborder-radius: 3px;\n\tpadding: 3px;\n}\n\ninput[type=\"text\"]:focus,\ninput[type=\"email\"]:focus,\ninput[type=\"url\"]:focus,\ninput[type=\"password\"]:focus,\ninput[type=\"search\"]:focus,\ninput[type=\"number\"]:focus,\ninput[type=\"tel\"]:focus,\ninput[type=\"range\"]:focus,\ninput[type=\"date\"]:focus,\ninput[type=\"month\"]:focus,\ninput[type=\"week\"]:focus,\ninput[type=\"time\"]:focus,\ninput[type=\"datetime\"]:focus,\ninput[type=\"datetime-local\"]:focus,\ninput[type=\"color\"]:focus,\ntextarea:focus {\n\tcolor: #111;\n}\n\nselect {\n\tborder: 1px solid #ccc;\n}\n\ntextarea {\n\twidth: 100%;\n}\n\n/*--------------------------------------------------------------\n# Layouts\n--------------------------------------------------------------*/\n\n/*--------------------------------------------------------------\n# Components\n--------------------------------------------------------------*/\n\n/* Navigation\n--------------------------------------------- */\n.main-navigation {\n\tdisplay: block;\n\twidth: 100%;\n}\n\n.main-navigation ul {\n\tdisplay: none;\n\tlist-style: none;\n\tmargin: 0;\n\tpadding-left: 0;\n}\n\n.main-navigation ul ul {\n\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);\n\tfloat: left;\n\tposition: absolute;\n\ttop: 100%;\n\tleft: -999em;\n\tz-index: 99999;\n}\n\n.main-navigation ul ul ul {\n\tleft: -999em;\n\ttop: 0;\n}\n\n.main-navigation ul ul li:hover > ul,\n.main-navigation ul ul li.focus > ul {\n\tdisplay: block;\n\tleft: auto;\n}\n\n.main-navigation ul ul a {\n\twidth: 200px;\n}\n\n.main-navigation ul li:hover > ul,\n.main-navigation ul li.focus > ul {\n\tleft: auto;\n}\n\n.main-navigation li {\n\tposition: relative;\n}\n\n.main-navigation a {\n\tdisplay: block;\n\ttext-decoration: none;\n}\n\n/* Small menu. */\n.menu-toggle,\n.main-navigation.toggled ul {\n\tdisplay: block;\n}\n\n@media screen and (min-width: 37.5em) {\n\n\t.menu-toggle {\n\t\tdisplay: none;\n\t}\n\n\t.main-navigation ul {\n\t\tdisplay: flex;\n\t}\n}\n\n.site-main .comment-navigation,\n.site-main\n.posts-navigation,\n.site-main\n.post-navigation {\n\tmargin: 0 0 1.5em;\n}\n\n.comment-navigation .nav-links,\n.posts-navigation .nav-links,\n.post-navigation .nav-links {\n\tdisplay: flex;\n}\n\n.comment-navigation .nav-previous,\n.posts-navigation .nav-previous,\n.post-navigation .nav-previous {\n\tflex: 1 0 50%;\n}\n\n.comment-navigation .nav-next,\n.posts-navigation .nav-next,\n.post-navigation .nav-next {\n\ttext-align: end;\n\tflex: 1 0 50%;\n}\n\n/* Posts and pages\n--------------------------------------------- */\n.sticky {\n\tdisplay: block;\n}\n\n.post,\n.page {\n\tmargin: 0 0 1.5em;\n}\n\n.updated:not(.published) {\n\tdisplay: none;\n}\n\n.page-content,\n.entry-content,\n.entry-summary {\n\tmargin: 1.5em 0 0;\n}\n\n.page-links {\n\tclear: both;\n\tmargin: 0 0 1.5em;\n}\n\n/* Comments\n--------------------------------------------- */\n.comment-content a {\n\tword-wrap: break-word;\n}\n\n.bypostauthor {\n\tdisplay: block;\n}\n\n/* Widgets\n--------------------------------------------- */\n.widget {\n\tmargin: 0 0 1.5em;\n}\n\n.widget select {\n\tmax-width: 100%;\n}\n\n/* Media\n--------------------------------------------- */\n.page-content .wp-smiley,\n.entry-content .wp-smiley,\n.comment-content .wp-smiley {\n\tborder: none;\n\tmargin-bottom: 0;\n\tmargin-top: 0;\n\tpadding: 0;\n}\n\n/* Make sure logo link wraps around logo image. */\n.custom-logo-link {\n\tdisplay: inline-block;\n}\n\n/* Captions\n--------------------------------------------- */\n.wp-caption {\n\tmargin-bottom: 1.5em;\n\tmax-width: 100%;\n}\n\n.wp-caption img[class*=\"wp-image-\"] {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n\n.wp-caption .wp-caption-text {\n\tmargin: 0.8075em 0;\n}\n\n.wp-caption-text {\n\ttext-align: center;\n}\n\n/* Galleries\n--------------------------------------------- */\n.gallery {\n\tmargin-bottom: 1.5em;\n\tdisplay: grid;\n\tgrid-gap: 1.5em;\n}\n\n.gallery-item {\n\tdisplay: inline-block;\n\ttext-align: center;\n\twidth: 100%;\n}\n\n.gallery-columns-2 {\n\tgrid-template-columns: repeat(2, 1fr);\n}\n\n.gallery-columns-3 {\n\tgrid-template-columns: repeat(3, 1fr);\n}\n\n.gallery-columns-4 {\n\tgrid-template-columns: repeat(4, 1fr);\n}\n\n.gallery-columns-5 {\n\tgrid-template-columns: repeat(5, 1fr);\n}\n\n.gallery-columns-6 {\n\tgrid-template-columns: repeat(6, 1fr);\n}\n\n.gallery-columns-7 {\n\tgrid-template-columns: repeat(7, 1fr);\n}\n\n.gallery-columns-8 {\n\tgrid-template-columns: repeat(8, 1fr);\n}\n\n.gallery-columns-9 {\n\tgrid-template-columns: repeat(9, 1fr);\n}\n\n.gallery-caption {\n\tdisplay: block;\n}\n\n/*--------------------------------------------------------------\n# Plugins\n--------------------------------------------------------------*/\n\n/* Jetpack infinite scroll\n--------------------------------------------- */\n\n/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */\n.infinite-scroll .posts-navigation,\n.infinite-scroll.neverending .site-footer {\n\tdisplay: none;\n}\n\n/* Re-display the Theme Footer when Infinite Scroll has reached its end. */\n.infinity-end.neverending .site-footer {\n\tdisplay: block;\n}\n\n/*--------------------------------------------------------------\n# Utilities\n--------------------------------------------------------------*/\n\n/* Accessibility\n--------------------------------------------- */\n\n/* Text meant only for screen readers. */\n.screen-reader-text {\n\tborder: 0;\n\tclip: rect(1px, 1px, 1px, 1px);\n\tclip-path: inset(50%);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute !important;\n\twidth: 1px;\n\tword-wrap: normal !important;\n}\n\n.screen-reader-text:focus {\n\tbackground-color: #f1f1f1;\n\tborder-radius: 3px;\n\tbox-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n\tclip: auto !important;\n\tclip-path: none;\n\tcolor: #21759b;\n\tdisplay: block;\n\tfont-size: 0.875rem;\n\tfont-weight: 700;\n\theight: auto;\n\tleft: 5px;\n\tline-height: normal;\n\tpadding: 15px 23px 14px;\n\ttext-decoration: none;\n\ttop: 5px;\n\twidth: auto;\n\tz-index: 100000;\n}\n\n/* Do not show the outline on the skip link target. */\n#primary[tabindex=\"-1\"]:focus {\n\toutline: 0;\n}\n\n/* Alignments\n--------------------------------------------- */\n.alignleft {\n\n\t/*rtl:ignore*/\n\tfloat: left;\n\n\t/*rtl:ignore*/\n\tmargin-right: 1.5em;\n\tmargin-bottom: 1.5em;\n}\n\n.alignright {\n\n\t/*rtl:ignore*/\n\tfloat: right;\n\n\t/*rtl:ignore*/\n\tmargin-left: 1.5em;\n\tmargin-bottom: 1.5em;\n}\n\n.aligncenter {\n\tclear: both;\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 1.5em;\n}\n"
  },
  {
    "path": "template-parts/content-none.php",
    "content": "<?php\n/**\n * Template part for displaying a message that posts cannot be found\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\n?>\n\n<section class=\"no-results not-found\">\n\t<header class=\"page-header\">\n\t\t<h1 class=\"page-title\"><?php esc_html_e( 'Nothing Found', '_s' ); ?></h1>\n\t</header><!-- .page-header -->\n\n\t<div class=\"page-content\">\n\t\t<?php\n\t\tif ( is_home() && current_user_can( 'publish_posts' ) ) :\n\n\t\t\tprintf(\n\t\t\t\t'<p>' . wp_kses(\n\t\t\t\t\t/* translators: 1: link to WP admin new post page. */\n\t\t\t\t\t__( 'Ready to publish your first post? <a href=\"%1$s\">Get started here</a>.', '_s' ),\n\t\t\t\t\tarray(\n\t\t\t\t\t\t'a' => array(\n\t\t\t\t\t\t\t'href' => array(),\n\t\t\t\t\t\t),\n\t\t\t\t\t)\n\t\t\t\t) . '</p>',\n\t\t\t\tesc_url( admin_url( 'post-new.php' ) )\n\t\t\t);\n\n\t\telseif ( is_search() ) :\n\t\t\t?>\n\n\t\t\t<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', '_s' ); ?></p>\n\t\t\t<?php\n\t\t\tget_search_form();\n\n\t\telse :\n\t\t\t?>\n\n\t\t\t<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', '_s' ); ?></p>\n\t\t\t<?php\n\t\t\tget_search_form();\n\n\t\tendif;\n\t\t?>\n\t</div><!-- .page-content -->\n</section><!-- .no-results -->\n"
  },
  {
    "path": "template-parts/content-page.php",
    "content": "<?php\n/**\n * Template part for displaying page content in page.php\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\n?>\n\n<article id=\"post-<?php the_ID(); ?>\" <?php post_class(); ?>>\n\t<header class=\"entry-header\">\n\t\t<?php the_title( '<h1 class=\"entry-title\">', '</h1>' ); ?>\n\t</header><!-- .entry-header -->\n\n\t<?php _s_post_thumbnail(); ?>\n\n\t<div class=\"entry-content\">\n\t\t<?php\n\t\tthe_content();\n\n\t\twp_link_pages(\n\t\t\tarray(\n\t\t\t\t'before' => '<div class=\"page-links\">' . esc_html__( 'Pages:', '_s' ),\n\t\t\t\t'after'  => '</div>',\n\t\t\t)\n\t\t);\n\t\t?>\n\t</div><!-- .entry-content -->\n\n\t<?php if ( get_edit_post_link() ) : ?>\n\t\t<footer class=\"entry-footer\">\n\t\t\t<?php\n\t\t\tedit_post_link(\n\t\t\t\tsprintf(\n\t\t\t\t\twp_kses(\n\t\t\t\t\t\t/* translators: %s: Name of current post. Only visible to screen readers */\n\t\t\t\t\t\t__( 'Edit <span class=\"screen-reader-text\">%s</span>', '_s' ),\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'span' => array(\n\t\t\t\t\t\t\t\t'class' => array(),\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t)\n\t\t\t\t\t),\n\t\t\t\t\twp_kses_post( get_the_title() )\n\t\t\t\t),\n\t\t\t\t'<span class=\"edit-link\">',\n\t\t\t\t'</span>'\n\t\t\t);\n\t\t\t?>\n\t\t</footer><!-- .entry-footer -->\n\t<?php endif; ?>\n</article><!-- #post-<?php the_ID(); ?> -->\n"
  },
  {
    "path": "template-parts/content-search.php",
    "content": "<?php\n/**\n * Template part for displaying results in search pages\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\n?>\n\n<article id=\"post-<?php the_ID(); ?>\" <?php post_class(); ?>>\n\t<header class=\"entry-header\">\n\t\t<?php the_title( sprintf( '<h2 class=\"entry-title\"><a href=\"%s\" rel=\"bookmark\">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>\n\n\t\t<?php if ( 'post' === get_post_type() ) : ?>\n\t\t<div class=\"entry-meta\">\n\t\t\t<?php\n\t\t\t_s_posted_on();\n\t\t\t_s_posted_by();\n\t\t\t?>\n\t\t</div><!-- .entry-meta -->\n\t\t<?php endif; ?>\n\t</header><!-- .entry-header -->\n\n\t<?php _s_post_thumbnail(); ?>\n\n\t<div class=\"entry-summary\">\n\t\t<?php the_excerpt(); ?>\n\t</div><!-- .entry-summary -->\n\n\t<footer class=\"entry-footer\">\n\t\t<?php _s_entry_footer(); ?>\n\t</footer><!-- .entry-footer -->\n</article><!-- #post-<?php the_ID(); ?> -->\n"
  },
  {
    "path": "template-parts/content.php",
    "content": "<?php\n/**\n * Template part for displaying posts\n *\n * @link https://developer.wordpress.org/themes/basics/template-hierarchy/\n *\n * @package _s\n */\n\n?>\n\n<article id=\"post-<?php the_ID(); ?>\" <?php post_class(); ?>>\n\t<header class=\"entry-header\">\n\t\t<?php\n\t\tif ( is_singular() ) :\n\t\t\tthe_title( '<h1 class=\"entry-title\">', '</h1>' );\n\t\telse :\n\t\t\tthe_title( '<h2 class=\"entry-title\"><a href=\"' . esc_url( get_permalink() ) . '\" rel=\"bookmark\">', '</a></h2>' );\n\t\tendif;\n\n\t\tif ( 'post' === get_post_type() ) :\n\t\t\t?>\n\t\t\t<div class=\"entry-meta\">\n\t\t\t\t<?php\n\t\t\t\t_s_posted_on();\n\t\t\t\t_s_posted_by();\n\t\t\t\t?>\n\t\t\t</div><!-- .entry-meta -->\n\t\t<?php endif; ?>\n\t</header><!-- .entry-header -->\n\n\t<?php _s_post_thumbnail(); ?>\n\n\t<div class=\"entry-content\">\n\t\t<?php\n\t\tthe_content(\n\t\t\tsprintf(\n\t\t\t\twp_kses(\n\t\t\t\t\t/* translators: %s: Name of current post. Only visible to screen readers */\n\t\t\t\t\t__( 'Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>', '_s' ),\n\t\t\t\t\tarray(\n\t\t\t\t\t\t'span' => array(\n\t\t\t\t\t\t\t'class' => array(),\n\t\t\t\t\t\t),\n\t\t\t\t\t)\n\t\t\t\t),\n\t\t\t\twp_kses_post( get_the_title() )\n\t\t\t)\n\t\t);\n\n\t\twp_link_pages(\n\t\t\tarray(\n\t\t\t\t'before' => '<div class=\"page-links\">' . esc_html__( 'Pages:', '_s' ),\n\t\t\t\t'after'  => '</div>',\n\t\t\t)\n\t\t);\n\t\t?>\n\t</div><!-- .entry-content -->\n\n\t<footer class=\"entry-footer\">\n\t\t<?php _s_entry_footer(); ?>\n\t</footer><!-- .entry-footer -->\n</article><!-- #post-<?php the_ID(); ?> -->\n"
  },
  {
    "path": "woocommerce.css",
    "content": "/*\nTheme Name: _s\n\nWooCommerce styles override\n*/\n\n/**\n * Shop tables\n */\ntable.shop_table_responsive thead {\n\tdisplay: none;\n}\n\ntable.shop_table_responsive tbody th {\n\tdisplay: none;\n}\n\ntable.shop_table_responsive tr td {\n\tdisplay: block;\n\ttext-align: right;\n\tclear: both;\n}\n\ntable.shop_table_responsive tr td::before {\n\tcontent: attr(data-title) \": \";\n\tfloat: left;\n}\n\ntable.shop_table_responsive tr td.product-remove a {\n\ttext-align: left;\n}\n\ntable.shop_table_responsive tr td.product-remove::before {\n\tdisplay: none;\n}\n\ntable.shop_table_responsive tr td.actions::before,\ntable.shop_table_responsive tr td.download-actions::before {\n\tdisplay: none;\n}\n\ntable.shop_table_responsive tr td.download-actions .button {\n\tdisplay: block;\n\ttext-align: center;\n}\n\n@media screen and (min-width: 48em) {\n\n\ttable.shop_table_responsive thead {\n\t\tdisplay: table-header-group;\n\t}\n\n\ttable.shop_table_responsive tbody th {\n\t\tdisplay: table-cell;\n\t}\n\n\ttable.shop_table_responsive tr th,\n\ttable.shop_table_responsive tr td {\n\t\ttext-align: left;\n\t}\n\n\ttable.shop_table_responsive tr td {\n\t\tdisplay: table-cell;\n\t}\n\n\ttable.shop_table_responsive tr td::before {\n\t\tdisplay: none;\n\t}\n}\n\n/**\n * Products\n */\nul.products {\n\tmargin: 0;\n\tpadding: 0;\n}\n\nul.products li.product {\n\tlist-style: none;\n\tposition: relative;\n\tmargin-bottom: 2em;\n}\n\nul.products li.product img {\n\tdisplay: block;\n}\n\nul.products li.product .button {\n\tdisplay: block;\n}\n\n@media screen and (min-width: 48em) {\n\n\tul.products li.product {\n\t\twidth: 30.79667%;\n\t\tfloat: left;\n\t\tmargin-right: 3.8%;\n\t}\n\n\tul.products li.product.first {\n\t\tclear: both;\n\t}\n\n\tul.products li.product.last {\n\t\tmargin-right: 0;\n\t}\n\n\tul.products.columns-1 li.product {\n\t\tfloat: none;\n\t\twidth: 100%;\n\t}\n\n\tul.products.columns-2 li.product {\n\t\twidth: 48.1%;\n\t}\n\n\tul.products.columns-3 li.product {\n\t\twidth: 30.79667%;\n\t}\n\n\tul.products.columns-4 li.product {\n\t\twidth: 22.15%;\n\t}\n\n\tul.products.columns-5 li.product {\n\t\twidth: 16.96%;\n\t}\n\n\tul.products.columns-6 li.product {\n\t\twidth: 13.49333%;\n\t}\n}\n\n/**\n * Single product\n */\n.single-product div.product {\n\tposition: relative;\n}\n\n.single-product div.product .woocommerce-product-gallery {\n\tposition: relative;\n\tfloat: left;\n}\n\n.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {\n\tposition: absolute;\n\ttop: 2em;\n\tright: 1em;\n\tdisplay: block;\n\tz-index: 99;\n}\n\n.single-product div.product .woocommerce-product-gallery .flex-viewport {\n\tmargin-bottom: 1em;\n}\n\n.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {\n\tlist-style: none;\n\tcursor: pointer;\n\tfloat: left;\n}\n\n.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {\n\topacity: 0.5;\n}\n\n.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {\n\topacity: 1;\n}\n\n.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {\n\topacity: 1;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {\n\twidth: 48.1%;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {\n\tmargin-right: 0;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {\n\tclear: both;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {\n\twidth: 30.79667%;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {\n\tmargin-right: 0;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {\n\tclear: both;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {\n\twidth: 22.15%;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {\n\tmargin-right: 0;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {\n\tclear: both;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {\n\twidth: 16.96%;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {\n\tmargin-right: 0;\n}\n\n.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {\n\tclear: both;\n}\n\n.stock:empty::before {\n\tdisplay: none;\n}\n\n.stock.in-stock {\n\tcolor: #0f834d;\n}\n\n.stock.out-of-stock {\n\tcolor: #e2401c;\n}\n\n/**\n * Checkout\n */\n@media screen and (min-width: 768px) {\n\n\t.col2-set .form-row-first {\n\t\tfloat: left;\n\t\tmargin-right: 3.8%;\n\t}\n\n\t.col2-set .form-row-last {\n\t\tfloat: right;\n\t\tmargin-right: 0;\n\t}\n\n\t.col2-set .form-row-first,\n\t.col2-set .form-row-last {\n\t\twidth: 48.1%;\n\t}\n}\n\n/**\n * General WooCommerce components\n */\n\n/**\n * Header cart\n */\n.site-header-cart {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.site-header-cart .cart-contents {\n\ttext-decoration: none;\n}\n\n.site-header-cart .widget_shopping_cart {\n\tdisplay: none;\n}\n\n.site-header-cart .product_list_widget {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n/**\n * Star rating\n */\n.star-rating {\n\toverflow: hidden;\n\tposition: relative;\n\theight: 1.618em;\n\tline-height: 1.618;\n\twidth: 5.3em;\n\tfont-family: star;\n\tfont-weight: 400;\n}\n\n.star-rating::before {\n\tcontent: \"\\53\\53\\53\\53\\53\";\n\topacity: 0.25;\n\tfloat: left;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n}\n\n.star-rating span {\n\toverflow: hidden;\n\tfloat: left;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\tpadding-top: 1.5em;\n}\n\n.star-rating span::before {\n\tcontent: \"\\53\\53\\53\\53\\53\";\n\ttop: 0;\n\tposition: absolute;\n\tleft: 0;\n\tcolor: #4169e1;\n}\n\np.stars a {\n\tposition: relative;\n\theight: 1em;\n\twidth: 1em;\n\ttext-indent: -999em;\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\tmargin-right: 1px;\n\tfont-weight: 400;\n}\n\np.stars a::before {\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 1em;\n\theight: 1em;\n\tline-height: 1;\n\tfont-family: star;\n\tcontent: \"\\53\";\n\tcolor: #404040;\n\ttext-indent: 0;\n\topacity: 0.25;\n}\n\np.stars a:hover ~ a::before {\n\tcontent: \"\\53\";\n\tcolor: #404040;\n\topacity: 0.25;\n}\n\np.stars:hover a::before {\n\tcontent: \"\\53\";\n\tcolor: #4169e1;\n\topacity: 1;\n}\n\np.stars.selected a.active::before {\n\tcontent: \"\\53\";\n\tcolor: #4169e1;\n\topacity: 1;\n}\n\np.stars.selected a.active ~ a::before {\n\tcontent: \"\\53\";\n\tcolor: #404040;\n\topacity: 0.25;\n}\n\np.stars.selected a:not(.active)::before {\n\tcontent: \"\\53\";\n\tcolor: #4169e1;\n\topacity: 1;\n}\n\n/**\n * Tabs\n */\n.woocommerce-tabs ul.tabs {\n\tlist-style: none;\n\tmargin: 0;\n\tpadding: 0;\n\ttext-align: left;\n}\n\n.woocommerce-tabs ul.tabs li {\n\tdisplay: block;\n\tmargin: 0;\n\tposition: relative;\n}\n\n.woocommerce-tabs ul.tabs li a {\n\tpadding: 1em 0;\n\tdisplay: block;\n}\n\n.woocommerce-tabs .panel h2:first-of-type {\n\tmargin-bottom: 1em;\n}\n\n/**\n * Password strength meter\n */\n.woocommerce-password-strength {\n\ttext-align: right;\n}\n\n.woocommerce-password-strength.strong {\n\tcolor: #0f834d;\n}\n\n.woocommerce-password-strength.short {\n\tcolor: #e2401c;\n}\n\n.woocommerce-password-strength.bad {\n\tcolor: #e2401c;\n}\n\n.woocommerce-password-strength.good {\n\tcolor: #3d9cd2;\n}\n\n/**\n * Forms\n */\n.form-row.woocommerce-validated input.input-text {\n\tbox-shadow: inset 2px 0 0 #0f834d;\n}\n\n.form-row.woocommerce-invalid input.input-text {\n\tbox-shadow: inset 2px 0 0 #e2401c;\n}\n\n.required {\n\tcolor: #f00;\n}\n\n/**\n * Notices\n */\n.woocommerce-message,\n.woocommerce-info,\n.woocommerce-error,\n.woocommerce-noreviews,\np.no-comments {\n\tbackground-color: #0f834d;\n\tclear: both;\n}\n\n.woocommerce-info,\n.woocommerce-noreviews,\np.no-comments {\n\tbackground-color: #3d9cd2;\n}\n\n.woocommerce-error {\n\tbackground-color: #e2401c;\n}\n\n.demo_store {\n\tposition: fixed;\n\tleft: 0;\n\tbottom: 0;\n\tright: 0;\n\tmargin: 0;\n\tpadding: 1em;\n\tbackground-color: #3d9cd2;\n\tz-index: 9999;\n}\n\n@media screen and (min-width: 48em) {\n\n\t/**\n\t * Header cart\n\t */\n\t.site-header-cart .widget_shopping_cart {\n\t\tposition: absolute;\n\t\ttop: 100%;\n\t\twidth: 100%;\n\t\tz-index: 999999;\n\t\tleft: -999em;\n\t\tdisplay: block;\n\t\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);\n\t}\n\n\t.site-header-cart:hover .widget_shopping_cart,\n\t.site-header-cart.focus .widget_shopping_cart {\n\t\tleft: 0;\n\t\tdisplay: block;\n\t}\n}\n\n/**\n * WooCommerce widgets\n */\n\n/**\n * WooCommerce Price Filter\n */\n.widget_price_filter .price_slider {\n\tmargin-bottom: 1.5em;\n}\n\n.widget_price_filter .price_slider_amount {\n\ttext-align: right;\n\tline-height: 2.4;\n}\n\n.widget_price_filter .price_slider_amount .button {\n\tfloat: left;\n}\n\n.widget_price_filter .ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n\n.widget_price_filter .ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1em;\n\theight: 1em;\n\tcursor: ew-resize;\n\toutline: none;\n\tbackground: #4169e1;\n\tbox-sizing: border-box;\n\tmargin-top: -0.25em;\n\topacity: 1;\n}\n\n.widget_price_filter .ui-slider .ui-slider-handle:last-child {\n\tmargin-left: -1em;\n}\n\n.widget_price_filter .ui-slider .ui-slider-handle:hover,\n.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {\n\tbox-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);\n}\n\n.widget_price_filter .ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tdisplay: block;\n\tborder: 0;\n\tbackground: #4169e1;\n}\n\n.widget_price_filter .price_slider_wrapper .ui-widget-content {\n\tbackground: rgba(0, 0, 0, 0.1);\n}\n\n.widget_price_filter .ui-slider-horizontal {\n\theight: 0.5em;\n}\n\n.widget_price_filter .ui-slider-horizontal .ui-slider-range {\n\theight: 100%;\n}\n"
  }
]