Mac Power Users
2015 SassConf Unconference Resources
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>Flexbox Layout</title> | |
<style> | |
body { | |
margin: 0; |
2015 SassConf Unconference Resources
<?php | |
/** | |
* Count number of widgets in a sidebar | |
* Used to add classes to widget areas so widgets can be displayed one, two, three or four per row | |
*/ | |
function slbd_count_widgets( $sidebar_id ) { | |
// If loading from front page, consult $_wp_sidebars_widgets rather than options | |
// to see if wp_convert_widget_settings() has made manipulations in memory. | |
global $_wp_sidebars_widgets; |
$lightness-bound : 70 !global; | |
$hue-bound-bottom : 40 !global; | |
$hue-bound-top : 200 !global; | |
@function checkDangerZone($color) { | |
@if ( (lightness($color) > $lightness-bound) or (hue($color) > $hue-bound-bottom and hue($color) < $hue-bound-top )) { | |
@return darken(desaturate($color, 70), 60); | |
} | |
@else { |
<!-- Title Credit: http://perishablepress.com/how-to-generate-perfect-wordpress-title-tags-without-a-plugin/ --> | |
<title> | |
<?php if (function_exists('is_tag') && is_tag()) { | |
echo 'Tag Archive for "'.$tag.'" — '; | |
} | |
elseif (is_archive()) { | |
wp_title(''); echo ' Archive — '; | |
} | |
elseif (is_search()) { | |
echo 'Search for "'.wp_specialchars($s).'" — '; |