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
| <form id="contact" name="contact" method="post"> | |
| <fieldset> | |
| <label for="name" id="name">Name<span class="required">*</span></label> | |
| <input type="text" name="name" id="name" size="30" value="" required/> | |
| <label for="email" id="email">Email<span class="required">*</span></label> | |
| <input type="text" name="email" id="email" size="30" value="" required/> | |
| <label for="phone" id="phone">Phone</label> | |
| <input type="text" name="phone" id="phone" size="30" value="" /> |
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
| // Start with a mixin | |
| @mixin iconfont { | |
| font-family: "foundation-icons"; // whatever your icon fonts name is | |
| font-style: normal; | |
| font-weight: normal; | |
| font-variant: normal; | |
| text-transform: none; | |
| line-height: 1; | |
| -webkit-font-smoothing: antialiased; | |
| display: inline-block; |
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
| <?php | |
| add_filter( 'template_include', 'var_template_include', 1000 ); | |
| function var_template_include( $t ){ | |
| $GLOBALS['current_theme_template'] = basename($t); | |
| return $t; | |
| } | |
| function get_current_template( $echo = false ) { | |
| if( !isset( $GLOBALS['current_theme_template'] ) ) |
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
| @mixin respond-to($media) { | |
| @media #{$media} { | |
| @content | |
| } | |
| } | |
| @mixin respond-to-fallback($media, $wrapper-class) { | |
| .#{$wrapper-class} & { | |
| @content; | |
| } |
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
| <button class="image-stack"></button> | |
| <button class="home"></button> | |
| <button class="select-image"></button> | |
| <button class="launch-camera"></button> | |
| <button class="my-location"></button> |
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
| # Requre a specific version in this file: | |
| # gem 'zurb-foundation', '=4.3.1' | |
| require 'zurb-foundation' | |
| # Require any additional compass plugins here. | |
| class Splitter | |
| MAX_SELECTORS_DEFAULT = 4095 |
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
| /** | |
| * Front end tasks. | |
| */ | |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var plumber = require('gulp-plumber'); | |
| var sass = require('gulp-sass'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var autoprefixer = require('gulp-autoprefixer'); |
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
| { | |
| "name": "vrweb", | |
| "version": "0.0.1", | |
| "description": "Front end tasks for rezFusion", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "git://github.com/bluetent/vrweb-D7" |
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
| $small-screen: 480px; | |
| $medium-screen: 768px; | |
| $large-screen: 960px; | |
| $huge-screen: 1232px; | |
| $breakpoints: ( | |
| 'small': ( max-width: $small-screen ), | |
| 'small-up': ( min-width: $small-screen ), | |
| 'medium': ( max-width: $medium-screen ), | |
| 'medium-up': ( min-width: $medium-screen ), |
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
| add_action( 'wp_dashboard_setup', 'register_my_dashboard_widget' ); | |
| function register_my_dashboard_widget() { | |
| wp_add_dashboard_widget( | |
| 'my_dashboard_widget', | |
| 'My Dashboard Widget', |