Scalable and
Modular
Architecture for
C
S
S
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
// names and colors from http://flatuicolors.com/ | |
$turquoise: #1ABC9C; | |
$green-sea: #16A085; | |
$emerland: #2ECC71; | |
$nephritis: #27AE60; | |
$peter-river: #3498DB; | |
$belize-hole: #2980B9; | |
$amethyst: #9B59B6; | |
$wisteria: #8E44AD; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title><picture> with different fallbacks</title> | |
</head> | |
<body> | |
<h1><picture> with different fallbacks</h1> | |
<p>Don't forget to check which resources are loaded, regardless of what is displayed.</p> |
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 | |
function themename_customize_register($wp_customize){ | |
$wp_customize->add_section('themename_color_scheme', array( | |
'title' => __('Color Scheme', 'themename'), | |
'priority' => 120, | |
)); | |
// ============================= |
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
/* Simple button [CSS] */ | |
html,body { | |
min-height: 100%; | |
height: 100%; | |
overflow: hidden; | |
} | |
/* Fancy noise */ | |
html:after { |
NewerOlder