This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {%- assign rk_resource_id = article.id | downcase -%} | |
| {%- assign rk_type = article.metafields.recipekit[rk_resource_id].type -%} | |
| {% if rk_type == 'json' %} | |
| {%- assign rk_mf = article.metafields.recipekit[rk_resource_id].value -%} | |
| {% else %} | |
| {%- assign rk_mf = article.metafields.recipekit[rk_resource_id] -%} | |
| {% endif %} | |
| {%- assign rk_settings = shop.metafields.recipekit.settings -%} | |
| {%- if rk_mf != blank -%} | |
| {{- 'recipekit.css' | asset_url | stylesheet_tag -}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root{--baseSize: 16px;--fontFamily: sans-serif;--basePadding: 6px;--marginPadding: 6px;--borderColour: #ccc;--accentColour: #007bff;--buttonColour: #007bff;--buttonColourHover: #0069d9;--buttonTextColour: white}#bbcomments-container{padding:0 20px}#commentsContainer{font-size:var(--baseSize);font-family:var(--fontFamily);padding-top:var(--basePadding);box-sizing:border-box}.formContainer h2{padding-bottom:var(--basePadding);border-bottom:2px solid var(--borderColour);margin:0;padding-top:0;font-size:1.2em;margin-bottom:var(--basePadding)}.formContainer h4{padding-top:var(--marginPadding);padding-bottom:0;text-transform:capitalize;margin:0;font-size:1em}@media (max-width: 768px){.formContainer h4{padding-top:calc(var(--basePadding) - 4px)}}.formContainer input,.formContainer textarea{font-family:var(--fontFamily);padding:var(--basePadding);margin:var(--marginPadding) 0;border:1px solid var(--borderColour);border-radius:5px;box-sizing:border-box;font-size:1em;width:100%}.formContainer input[type=checkbox]{widt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @charset "UTF-8"; | |
| /* Base SCSS Variables */ | |
| /* End SCSS Variables */ | |
| /* Media Queries for SCSS */ | |
| /* End Media Queries */ | |
| /* Debut Theme Overrides */ | |
| .rte .social-sharing { | |
| margin: 0; | |
| list-style: none; | |
| padding-top: 10px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #rk_filter { | |
| display: none; /* hide filter by default */ | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| margin: 20px 0; | |
| } | |
| #rk_filter select { | |
| margin: 0 5px; | |
| padding: 10px 15px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% comment %} | |
| Wait.li Logic File | |
| DO NOT TOUCH THIS FILE. | |
| {% endcomment %} | |
| {% assign og_wait_li_product_id = product.id | downcase %} | |
| {% assign new_wait_li_product_id = product.selected_or_first_available_variant.id | downcase %} | |
| {% assign og_wait_li_product_metafield = product.metafields.wait_li[og_wait_li_product_id] %} | |
| {% assign new_wait_li_product_metafield = product.selected_or_first_available_variant.metafields.wait_li[new_wait_li_product_id] %} | |
| {% if og_wait_li_product_metafield %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This class contains general helper methods. | |
| */ | |
| class Helper { | |
| /** | |
| * @param {String} name | |
| * @returns {String|null} | |
| */ | |
| static getQueryParameter(name) { | |
| name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .rte .social-sharing{margin:0;list-style:none;padding-top:10px}#frameToPrint{display:none}#rk_parent *::after{display:none}#rk_parent .rk_modern{position:relative;display:block !important}#rk_parent .rk_modern .rk_container{width:100%;max-width:1000px;padding:15px;border:1px solid black}@media only screen and (min-width: 1024px){#rk_parent .rk_modern .rk_container{padding:25px}}#rk_parent .rk_modern .rk_container .rk_heading{width:100%;margin-bottom:5px;margin-top:0;padding-top:0;border:0;font-size:30px;text-align:left;line-height:1;margin-bottom:10px}#rk_parent .rk_modern .rk_container .rk_subheading{line-height:1;margin-top:0px;border:0}#rk_parent .rk_modern .rk_container .rk_meta{margin-top:0;font-size:17px;margin-bottom:5px;font-weight:bold;text-align:left;border:0;line-height:1}@media only screen and (min-width: 1024px){#rk_parent .rk_modern .rk_container .rk_meta{margin-bottom:10px}}#rk_parent .rk_modern .rk_container ul,#rk_parent .rk_modern .rk_container li,#rk_parent .rk_modern .rk_container p,#rk_pa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*============================================================================ | |
| Ajax the add to cart experience by revealing it in a side drawer | |
| Plugin Documentation - http://shopify.github.io/Timber/#ajax-cart | |
| (c) Copyright 2015 Shopify Inc. Author: Carson Shold (@cshold). All Rights Reserved. | |
| This file includes: | |
| - Basic Shopify Ajax API calls | |
| - Ajax cart plugin | |
| This requires: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {%- comment %} | |
| For "Double Block" Section | |
| {% endcomment -%} | |
| <div class="hero-image-outer"> | |
| <div class="hero-image"> | |
| <div class="image-slider"> | |
| {% for block in section.blocks %} | |
| {% if block.type == 'block-1' %} |
NewerOlder