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
/** | |
* Normal States | |
*/ | |
@mixin ns { | |
&:link, | |
&:visited { | |
@content; | |
} | |
} |
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
/** | |
* Bootstrap responsive breakpoints mixins | |
* | |
*/ | |
$screen-xs: 480px; | |
$screen-sm: 768px; | |
$screen-md: 992px; | |
$screen-lg: 1200px; | |
@mixin xxs { |
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
{ | |
"name": "roots", | |
"version": "7.0.0", | |
"homepage": "http://roots.io", | |
"authors": [ | |
"Ben Word <[email protected]>" | |
], | |
"license": "MIT", | |
"private": true, | |
"ignore": [ |
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
'use strict'; | |
module.exports = function(grunt) { | |
// Load all tasks | |
require('load-grunt-tasks')(grunt); | |
// Show elapsed time | |
require('time-grunt')(grunt); | |
var jsFileList = [ | |
'assets/vendor/bootstrap-sass/js/transition.js', | |
'assets/vendor/bootstrap-sass/js/alert.js', |
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
{ | |
"name": "roots", | |
"version": "7.0.0", | |
"author": "Ben Word <[email protected]>", | |
"homepage": "http://roots.io", | |
"repository": { | |
"type": "git", | |
"url": "git://github.com/roots/roots.git" | |
}, | |
"bugs": { |
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
# Require any additional compass plugins here. | |
# Set this to the root of your project when deployed: | |
http_path = "/" | |
css_dir = "assets/css" | |
sass_dir = "assets/sass" | |
images_dir = "assets/img" | |
javascripts_dir = "assets/js" | |
fonts_dir = "assets/fonts" | |
output_style = :expanded |
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
@import "compass"; | |
// Core variables and mixins | |
@import "../vendor/bootstrap-sass/lib/variables"; | |
@import "../vendor/bootstrap-sass/lib/mixins"; | |
// Reset | |
@import "../vendor/bootstrap-sass/lib/normalize"; | |
@import "../vendor/bootstrap-sass/lib/print"; |
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 vb_acf_load_gforms( $field ) { | |
global $wpdb; | |
$sql = "SELECT * FROM {$wpdb->prefix}rg_form"; | |
$forms = $wpdb->get_results( $sql ); | |
$field['choices'] = array(); | |
if( $forms ) : |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$icons-svg: ( | |
sprite: (width: 132px, height: 88px, svgPath: '../images/sprite.svg'), | |
facebook: (width: 33.9px, height: 33.9px, backgroundX: 0px, backgroundY: 0px), | |
linkedin: (width: 33.9px, height: 33.9px, backgroundX: -43.9px, backgroundY: 0px), | |
pinterest: (width: 33.9px, height: 33.9px, backgroundX: 0px, backgroundY: -43.9px), | |
twitter: (width: 33.9px, height: 33.9px, backgroundX: -43.9px, backgroundY: -43.9px), |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$icons-svg: ( | |
sprite: (width: 132px, height: 88px, svgPath: '../images/sprite.svg'), | |
facebook: (width: 33.9px, height: 33.9px, backgroundX: 0px, backgroundY: 0px), | |
linkedin: (width: 33.9px, height: 33.9px, backgroundX: -43.9px, backgroundY: 0px), | |
pinterest: (width: 33.9px, height: 33.9px, backgroundX: 0px, backgroundY: -43.9px), | |
twitter: (width: 33.9px, height: 33.9px, backgroundX: -43.9px, backgroundY: -43.9px), |
OlderNewer