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
// Avoid `console` errors in browsers that lack a console. | |
(function() { | |
var method; | |
var noop = function noop() {}; | |
var methods = [ | |
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', | |
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', | |
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', | |
'timeStamp', 'trace', 'warn' | |
]; |
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
update wp_options set option_value = replace(option_value,'string_to_find','string_to_replace'); | |
update wp_posts set guid = replace(guid,'string_to_find','string_to_replace'); |
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
$base-font-size: 16; | |
// Major Breakpoints | |
$breakpoint__small: 480; | |
$breakpoint__medium: 960; | |
$breakpoint__large: 1280; | |
$breakpoint__sitemax: 1440; | |
/* ========================================================================== | |
= Media Queries |
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 './src/library/core/variables'; | |
@import './src/library/mixins/media-queries'; | |
@import './src/library/mixins/rems'; | |
@mixin text-light() { | |
font-family: $font__base; | |
font-weight: lighter; | |
font-style: normal; | |
} | |
@mixin text-regular() { |
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
javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0 |
OlderNewer