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
background: black;.so{ | |
color: #ffffff; | |
background: black; | |
display: block; | |
} | |
.a2c{ | |
background: grey; |
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
//*apply this to a class assigned to a column. Modify colors borders border radius and box shadow to suit your needs | |
//*our sample class and css properties | |
.lbb-content-box-1 | |
{ | |
color:white; | |
padding: 5%; | |
border-radius: 5px; | |
background:#4EA7FE; | |
background: rgba(78, 167, 254, .8); | |
box-shadow: 0 0 8px rgba(0, 0, 0, .7); |
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
#id //create the container and apply container wide style for everything contained within | |
definition:xxx; | |
//modify something within the container but not effect anything else site wide. | |
.id.class-1{ | |
definition:xxx; | |
} | |
//modify a single html tag within the container | |
.id.class-1.element | |
{ | |
//do it as many times as you need to for as many things as you need to |
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
background: linear-gradient(108deg, #3e98d5, #fabc05); | |
background-size: 400% 400%; | |
-webkit-animation: ab-fab 52s ease infinite; | |
-moz-animation: ab-fab 52s ease infinite; | |
-o-animation: ab-fab 52s ease infinite; | |
animation: ab-fab 52s ease infinite; | |
@-webkit-keyframes ab-fab { | |
0%{background-position:0% 48%} | |
50%{background-position:100% 53%} | |
100%{background-position:0% 48%} |
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
# ----------------------------------------------------------------- | |
# .gitignore for WordPress | |
# Bare Minimum Git | |
# http://ironco.de/bare-minimum-git/ | |
# ver 20150227 | |
# | |
# This file is tailored for a WordPress project | |
# using the default directory structure | |
# | |
# This file specifies intentionally untracked files to ignore |
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
background: linear-gradient(182deg, #0e5a71, #f7951e); | |
background-size: 400% 400%; | |
-webkit-animation: AnimationName 2s ease infinite; | |
-moz-animation: AnimationName 2s ease infinite; | |
-o-animation: AnimationName 2s ease infinite; | |
animation: AnimationName 2s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:52% 0%} | |
50%{background-position:49% 100%} | |
100%{background-position:52% 0%} |
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
jQuery(function( $ ){ | |
$(".site-header").after('<div class="bumper"></div>'); | |
$(window).scroll(function () { | |
if ($(document).scrollTop() > 50 ) { | |
$('.site-header').addClass('shrink'); | |
} else { | |
$('.site-header').removeClass('shrink'); | |
} |
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 | |
//* Do NOT include the opening php tag | |
/********************************** | |
* | |
* Replace Header Site Title with Inline Logo | |
* Fix Genesis bug - when using static front page and blog page (admin reading settings) Home page is <p> tag and Blog page is <h1> tag | |
* Replace "is_home" with "is_front_page" to correctly display Home page wit <h1> tag and Blog page with <p> tag | |
* | |
* @author AlphaBlossom / Tony Eppright |