Skip to content

Instantly share code, notes, and snippets.

View jdelia's full-sized avatar

Jackie D'Elia jdelia

View GitHub Profile
@jdelia
jdelia / svg-icons.min.svg
Created August 27, 2017 15:07
svg-sprite
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdelia
jdelia / code-functions.php
Last active August 2, 2018 16:57
SVG Icons and Graphic Elements
// Add the SVG icons functions.
include_once( get_stylesheet_directory() . '/lib/icon-functions.php' );
@jdelia
jdelia / svg-cog-wheels-svg
Last active July 11, 2018 12:48
CSS Animation spinning cog wheels
<svg width="100%" height="100%" viewBox="0 0 600 600" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<rect x="-152" y="-117" width="882" height="819" fill="#ebebeb"/>
<g>
<circle id="circle-yellow" cx="393.785" cy="409.5" r="100" fill="transparent"/>
<g>
<path class="cog-yellow" d="M378.75,310.637c-6.476,0.985 -12.839,2.603 -18.999,4.832l0.962,15.729c-5.814,2.455 -11.337,5.551 -16.466,9.229l-12.915,-9.028c-5.115,4.091 -9.817,8.675 -14.036,13.685l8.696,13.14c-3.807,5.034 -7.042,10.476 -9.644,16.226l-15.699,-1.361c-2.385,6.101 -4.165,12.421 -5.314,18.869l14.102,7.032c-0.781,6.263 -0.861,12.593 -0.24,18.874l-14.276,6.671c0.985,6.476 2.604,12.839 4.833,18.998l15.728,-0.961c2.456,5.814 5.551,11.336 9.23,16.465l-9.028,12.915c4.091,5.116 8.674,9.818 13.684,14.037l13.141,-8.697c5.033,3.807 10.475,7.042 16.225,9.645l-1.36,15.
@jdelia
jdelia / custom-style.css
Last active October 14, 2017 03:11
Code snippets for a video lightbox with image thumbnail.
.lightbox-video {
margin: auto;
padding: 5% 10%;
}
.lightbox-video a {
display: block;
position: relative;
overflow: hidden;
cursor: pointer;
@jdelia
jdelia / genesis-simple-faq-styles.css
Created August 26, 2017 10:38
Genesis Simple FAQ Styles
.gs-faq__question {
background: transparent;
border-bottom: 1px solid #eee;
color: #333;
padding-left: 0;
padding-right: 0;
}
.gs-faq__question:focus,
.gs-faq__question:hover {
<?php
/**
* Creates a link for email and then hide email address from Spam Bots in HTML using a shortcode.
* [email]hello@email.com[/email]
*
* @param array $atts Shortcode attributes. Not used.
* @param string $content The shortcode content. Should be an email address.
*
* @return string The obfuscated email address.
@jdelia
jdelia / hard-coded.html
Last active August 25, 2017 17:49
SVG Icon System
<p>Ok, let's put some SVG icons here hard-coded:</p>
<p>Graphical Elements:</p>
<svg class="icon icon-content icon-rotate"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-search"></use></svg><svg class="icon icon-content icon-rotate"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-close"></use></svg><svg class="icon icon-content icon-rotate"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-angle-down"></use></svg><svg class="icon icon-content icon-rotate"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-folder-open"></use></svg><svg class="icon icon-content icon-rotate"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-bars"></use></svg><svg class="icon icon-content icon-rotate"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-quote-right"></use></svg><svg class="icon icon-content icon-rotate"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-mail-reply"></use></svg><svg class="icon icon-con
@jdelia
jdelia / snippet-front-page.php
Created July 20, 2017 18:11
H1 on Home Page for Genesis
<?php
/* Add this to your Genesis front-page.php */
add_filter( 'genesis_site_title_wrap', 'brandiD_h1_for_site_title' );
/**
* Use h1 for site title.
*
* @param string $wrap site title.
* @return $wrap force h1.
*/
@jdelia
jdelia / rethinkfm.md
Last active June 2, 2017 11:18 — forked from jcasabona/howibuit.md
Guest Notes for Rethink.fm Podcast

Guest Notes for Rethink.fm Podcast

Format Audio Only

We will pick a topic to talk about and discuss with some questions from me. The target is a 30(ish) minute show.

I will open the show, mention any show's sponsor(s) and then introduce you. We'll then jump into the questions.

Tips for Good Recording

@jdelia
jdelia / functions.php
Last active May 22, 2017 12:22
Contents of my Twentyseventeen child theme.
<?php
/**
* The functions file for Child of Twentyseventeen theme.
*
* @package WordPress
* @subpackage child_of_twentyseventeen
* @since 1.0
* @version 1.0
*/