This file contains 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
<?php | |
add_action( 'wp_enqueue_scripts' , '_wpsc_te2_enqueue_styles', 1 ); | |
function _wpsc_te2_enqueue_styles() { | |
wp_register_style( 'wpsc-common', wpsc_locate_asset_uri( 'css/common.css' ), array(), WPSC_VERSION ); | |
do_action( 'wpsc_register_styles' ); | |
wp_enqueue_style( 'wpsc-common' ); |
This file contains 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
/** | |
* BuddyBoss JavaScript functionality | |
* | |
* @since Boss 1.0.0 | |
* @package Boss | |
* | |
* ==================================================================== | |
* | |
* 1. jQuery Global | |
* 2. Main BuddyBoss Class |
This file contains 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
<?php | |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly. | |
/** | |
* Course Progress Widget | |
* | |
* A Course Progress Widget widget to display a progress of current Course. | |
* | |
* @package WordPress | |
* @subpackage Boss for Sensei |
This file contains 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
<?php | |
/** | |
* Loads the custom Tailor element(s). | |
*/ | |
function hb_tailor_load_custom_element() { | |
/** | |
* Creates a Full Width Section. | |
*/ |
This file contains 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="light-wrapper"> | |
<div class="container inner2"> | |
<div class="hb-checkout col2 row"> | |
<div class="col-sm-8 hb-checkout-content"> | |
<div class="isotope row"> | |
<div class="step-1"> | |
<div class="date-selection"> | |
<div class="section-title"> | |
<h2><?php _e( 'Next Steps:', 'hb-ryla-child-theme' ); ?></h2> | |
<h3><?php _e( 'Choose a date and Select Ticket Quantity.', 'hb-ryla-child-theme' ); ?></h3> |
This file contains 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
/** | |
* HB Niagara Ryla-WP Child Theme - v0.1.0 - 2018-01-30 | |
* https://zao.is | |
* | |
* Copyright (c) 2018; | |
* Licensed GPLv2+ | |
*/ | |
window.HNC = window.HNC || {}; |
This file contains 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
//Why vw instead of percentage? | |
$columns: ( | |
1: calc(1 * (100vw / 12)), | |
2: calc(2 * (100vw / 12)), | |
3: calc(3 * (100vw / 12)), | |
4: calc(4 * (100vw / 12)), | |
5: calc(5 * (100vw / 12)), | |
6: calc(6 * (100vw / 12)), | |
7: calc(7 * (100vw / 12)), |
This file contains 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="tp-travel-time tp-block"> | |
<div class="tp-block__container--full"> | |
<h4 class="tp-travel-time__title">Travel Time to Next Destination</h4> | |
<div class="tp-travel-time__meta"> | |
<span class="tp-travel-time__bike"><span class="tp-svg-icon"></span><span class="tp-travel-time__content">20 minutes by bike</span></span> | |
<span class="tp-travel-time__transit"><span class="tp-svg-icon"></span><span class="tp-travel-time__content">14 mintues by <a href="#">transit</a></span></span> | |
</div> | |
</div> | |
</section> |
This file contains 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
$size__site-gutter-mobile: 20px; | |
$size__site-gutter-tablet: 50px; | |
$size__max-site-width: 1600px; | |
// Site Columns | |
$site__content-columns-mobile: 2; | |
$site__content-columns-tablet: 8; | |
$site__content-columns-desktop: 15; | |
// Grid Widths |
This file contains 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
@mixin gridSection { | |
display: grid; | |
grid-template-columns: $size__mobile-grid; | |
@include media(tablet) { | |
grid-template-columns: $size__tablet-grid; | |
} | |
@include media(desktop) { | |
grid-template-columns: $size__desktop-grid; |