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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$primary-color: #295e7c; | |
@mixin debug { | |
background-color: pink; | |
border: 1px solid black; |
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) | |
// ---- | |
.message { | |
border: 1px solid #ccc; | |
padding: 10px; | |
color: #333; | |
} |
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) | |
// ---- | |
@mixin very-hidden { | |
text-indent: -9999px; | |
overflow: hidden; | |
white-space: nowrap; | |
text-decoration: none; | |
} |
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) | |
// ---- | |
.very-hidden { | |
text-indent: -9999px; | |
overflow: hidden; | |
white-space: nowrap; | |
text-decoration: none; | |
} |
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) | |
// ---- | |
.message { | |
border: 1px solid #ccc; | |
padding: 10px; | |
color: #333; | |
} |
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 { | |
padding: 1em; | |
} | |
.color-1 { | |
color: red; | |
} | |
.color-2 { | |
color: blue; |
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
[ | |
{ | |
"id" : 1, | |
"artistexpand_value" : "A$AP Rocky", | |
"lastfm_plays" : 29162324, | |
"lastfm_tag1" : "hip-hop", | |
"lastfm_tag2" : "rap", | |
"lastfm_tag3" : "underground hip-hop", | |
"lastfm_tag4" : "seen live", | |
"lastfm_tagurls" : "http://www.last.fm/tag/Hip-Hop, http://www.last.fm/tag/rap", |
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
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var bower = require('bower'); | |
var concat = require('gulp-concat'); | |
var clean = require('gulp-clean'); | |
var jshint = require('gulp-jshint'); | |
var sass = require('gulp-sass'); | |
var minifyCss = require('gulp-minify-css'); | |
var rename = require('gulp-rename'); | |
var ngAnnotate = require('gulp-ng-annotate'); |
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 | |
// Do not allow directly accessing this file. | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit( 'Direct script access denied.' ); | |
} | |
?> | |
<?php get_header(); ?> | |
<div id="content" <?php Avada()->layout->add_style( 'content_style' ); ?>> |
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
var FOLLOW_PAUSE = 1250; | |
var FOLLOW_RAND = 250; | |
var PAGE_WAIT = 2000; | |
__cnt__ = 0; | |
var f; | |
f = function() { | |
var eles; | |
var __lcnt__ = 0; | |
eles = jQuery('.Grid-cell .not-following .follow-text').each(function(i, ele) { | |
ele = jQuery(ele); |