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
// ==UserScript== | |
// @name BDS Blur Images | |
// @namespace https://brubakerservices.org/ | |
// @version 1.0 | |
// @description Blur images on all websites and unblur gradually when mouse is hovered over an image. | |
// @author Dan Brubaker | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
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 | |
/** | |
* Updates Page. | |
* | |
* @package BrubakerDesignServices\FaithForRevivalTheme | |
* @since 1.0.0 | |
* @author Dan Brubaker | |
* @link https://brubakerservices.org/ | |
* @license GPL-2.0+ | |
*/ |
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
// Add descriptive CSS classes to menu items | |
add_filter('nav_menu_css_class', 'bds_nav_classes', 10, 2); | |
function bds_nav_classes( $classes, $item ) { | |
$item_class = strtolower( preg_replace("/[\s_]/", "-", $item->title) ); | |
$classes[] = 'menu-item-' . $item_class; | |
return $classes; | |
} |
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 | |
// Add sections above the main blog loop | |
add_action( 'genesis_before_loop', 'bds_featured_post' ); | |
add_action( 'genesis_before_loop', 'bds_meeting_info' ); | |
// Replace the blog loop with custom loop | |
remove_action( 'genesis_loop', 'genesis_do_loop' ); | |
add_action( 'genesis_loop', 'bds_do_custom_loop' ); |
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
/** | |
* @description This script modifies the Events Manager map | |
* | |
* @author Dan Brubaker | |
* | |
*/ | |
// Modify Event Manager Map | |
jQuery(document).ready(function ($) { | |
jQuery(document).bind('em_maps_location_hook', function (e, map, infowindow, marker) { |
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
.container { | |
background: blue; | |
text-align: center; | |
font-size: 1.6rem; | |
@include mq(xl) {font-size: 2rem;} | |
} |
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
/* ========== PLACE GENERAL MEDIA QUERY CODE HERE ========== */ | |
/* ===== Breakpoints ===== */ | |
$break-point-xs : 1px; | |
$break-point-s : 320px; | |
$break-point-ms : 480px; |
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
.video-wrapper { | |
position: relative; | |
padding-bottom: 56.25%; | |
} | |
iframe, | |
object, | |
embed { | |
position: absolute; | |
top: 0; |
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
.map-container { | |
position: relative; | |
padding-bottom: 56.25%; | |
overflow: hidden; | |
} | |
.map-container iframe { | |
position: absolute; | |
top: 0; | |
left: 0; |
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
table { | |
table-layout: fixed; | |
width: 100%; | |
} | |
tr { | |
height: 12vw; /* Set this to whatever amount forms square cells */ | |
} |
NewerOlder