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
| <section class="one-category bundle-category"> | |
| <div class="section-wrapper"> | |
| <div class=""> | |
| <h2 class="one-category__header">Course Bundles</h2> | |
| <div class="one-category__description"> | |
| Buy more, Save more. Our course bundles combine multiple courses, usually related in some way, that are offered a at significant discsount. Below are our product bundles, the courses they include and the savings for each. | |
| </div> | |
| </div> | |
| </div> | |
| </section> |
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
| <aside class="blog-aside"> | |
| <div class="blog-aside__tags"> | |
| <div class="blog-aside__tags-nav {% if request.params.author or request.params.tag %} {% if request.params.tag == nill %}active{% endif %}{% else %}active{% endif %}" data-tab="contributors-tab">Authors</div> | |
| <div class="blog-aside__tags-nav {% if request.params.author or request.params.tag %}{% if request.params.author == nill %}active{% endif %}{% endif %}" data-tab="contributors-topics">Tags</div> | |
| <div class="blog-aside__tags-content contributors-tab {% if request.params.author or request.params.tag %} {% if request.params.tag == nill %}active{% endif %}{% else %}active{% endif %}"> | |
| <div class="row"> | |
| {% for author in store.authors %} | |
| {% if author.posts_count > 0 %} | |
| <div class="small-6 columns"> | |
| <a href="/blog_posts?author={{author.slug}}" class="{% if request.params.author == author.slug %}active{% endif %}">{{author.name}}</a> |
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
| /* fix safary full width player bug */ | |
| :-webkit-full-screen-ancestor:not(iframe) .page-header__nav.off-canvas__menu { | |
| opacity: 0; | |
| } | |
| :-webkit-full-screen-ancestor:not(iframe) .content-wrapper { | |
| max-width: none; | |
| } |
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
| if (localStorage.getItem('dontLoad') === null) { | |
| console.log('visited in not in LocalStorage') | |
| localStorage.setItem('dontLoad', 'visited'); | |
| } else { | |
| console.log('visited is in LocalStorage') | |
| } |
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
| <div class="plus-minus-element"> | |
| <button class="dec plus-minus-element__button">-</button> | |
| <input type="text" name="" value="2"> | |
| <button class="inc plus-minus-element__button">+</button> | |
| </div> |
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
| input { | |
| &::-webkit-input-placeholder { | |
| color: #c3c3c3; | |
| } | |
| &::-moz-placeholder { | |
| color: #c3c3c3; | |
| } | |
| &:-moz-placeholder { | |
| color: #c3c3c3; | |
| } |
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
| <div class="rating"> | |
| <input type="radio" class="rating-input" id="rating-input-1-5" name="rating-input-1"> | |
| <label for="rating-input-1-5" class="rating-star"></label> | |
| <input type="radio" class="rating-input" id="rating-input-1-4" name="rating-input-1"> | |
| <label for="rating-input-1-4" class="rating-star"></label> | |
| <input type="radio" class="rating-input" id="rating-input-1-3" name="rating-input-1"> | |
| <label for="rating-input-1-3" class="rating-star"></label> | |
| <input type="radio" class="rating-input" id="rating-input-1-2" name="rating-input-1"> | |
| <label for="rating-input-1-2" class="rating-star"></label> | |
| <input type="radio" class="rating-input" id="rating-input-1-1" name="rating-input-1"> |
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
| .slick-arrow { | |
| outline: none; | |
| background: none; | |
| border: none; | |
| position: absolute; | |
| top: 50%; | |
| transform: translate(0, -50%); | |
| cursor: pointer; | |
| z-index: 2; | |
| &:hover, &:focus { |