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
$viewport-desktop-size: 1366; | |
$viewport-mobile-size: 320; | |
// Given a range of font sizes ( $mobile-font-size and $desktop-font-size ), apply break points evenly from mobile to desktop widths | |
@mixin responsive-font( $mobile-font-size, $desktop-font-size, $line-height-buffer: 2 ) { | |
$number-of-breakpoints-required: $desktop-font-size - $mobile-font-size; | |
$maximum-viewport-range: $viewport-desktop-width - $viewport-mobile-width; | |
$breakpoint-multiplier: $maximum-viewport-range / $number-of-breakpoints-required; | |
font-size: #{$mobile-font-size}px; | |
line-height: #{$mobile-font-size + $line-height-buffer}px; |
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
<VirtualHost *:80> | |
ServerName dev.host | |
UseCanonicalName off | |
ServerAlias *.host | |
DocumentRoot E:/wamp64/www/wordpress | |
<Directory "E:/wamp64/www/wordpress/"> | |
Options +Indexes +Includes +FollowSymLinks +MultiViews | |
AllowOverride All | |
Require local | |
</Directory> |
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 | |
/******************************************** // <-- Add a dash to turn on debugging | |
// define( 'WP_DEBUG', true ); | |
// define( 'WP_DEBUG_LOG', true ); | |
// define( 'WP_DEBUG_DISPLAY', true ); | |
error_reporting(E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR); | |
ini_set('display_errors', 1); | |
// define( 'SCRIPT_DEBUG', true ); |
NewerOlder