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 | |
/** | |
* Shortcut wrapper for image resizing on the fly | |
* | |
* Usage: | |
* | |
* {{ image|resize(width, height, mode, position, quality) }} | |
* | |
* e.g. | |
* |
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
;(function ($, window, document, undefined) { | |
"use strict"; | |
var pluginName = "formWizard", | |
defaults = { | |
sections: 'fieldset', | |
navNext: '#form-next', | |
navPrev: '#form-previous', | |
progressBar: '.progress-bar', |
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
// for background see http://stackoverflow.com/a/25644266/526258 | |
@import "bootstrap"; | |
// XLarge screen | |
$screen-xl: 1600px; | |
$screen-xl-min: $screen-xl; | |
$screen-xl-hugedesktop: $screen-xl-min; | |
// So media queries don't overlap when required, provide a maximum |