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
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| pkg: grunt.file.readJSON 'package.json' | |
| require: grunt.file.readJSON 'source/config/requirejs.json' | |
| paths: grunt.file.readJSON 'source/config/paths.json' | |
| # Another it goes on... |
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
| ZSH_THEME_GIT_PROMPT_PREFIX="(" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX=")$reset_color" | |
| ZSH_THEME_GIT_PROMPT_DIRTY="$fg_no_bold[red]+" | |
| ZSH_THEME_GIT_PROMPT_CLEAN="$fg_no_bold[green]" | |
| function get_pwd() { | |
| echo "${PWD/$HOME/~}" | |
| } | |
| function put_spacing() { |
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
| ul,ol { | |
| list-style:none; | |
| } | |
| h1,h2,h3,h4,h5,h6,pre,code,p,caption,th,td { | |
| } | |
| address { | |
| font-style:normal; |
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 xmlns="http://www.w3.org/1999/xhtml" lang="en"> | |
| <head> | |
| <title>Wordpress Users Wales</title> | |
| <link rel="stylesheet" href="css/base.css" /> | |
| <link rel="stylesheet" href="css/responsive.css" /> | |
| <!-- insert in head --> | |
| <meta name="”viewport”" content="”initial-scale=1.0," width="device-width”" /> | |
| <!-- end --> | |
| </head> |
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
| /* Mobile First! */ | |
| body { | |
| font-size: 100%; | |
| } | |
| #header { | |
| padding: 12px 3.75%; /* (12 / 320) * 100 = 3.75 */ | |
| } | |
| #title h1 { | |
| font-size: 2em; /* (32 / 16) * 100 = 2 */ | |
| line-height: 1em; |
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
| /* Mobile First! */ | |
| body { | |
| font-size: 100%; | |
| } | |
| #header { | |
| padding: 12px 3.75%; /* (12 / 320) * 100 = 3.75 */ | |
| } | |
| #title h1 { | |
| font-size: 2em; /* (32 / 16) * 100 = 2 */ | |
| line-height: 1em; |
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
| /* Mobile First! */ | |
| body { | |
| font-size: 100%; | |
| } | |
| #header { | |
| padding: 12px 3.75%; /* (12 / 320) * 100 = 3.75 */ | |
| } | |
| #title h1 { | |
| font-size: 2em; /* (32 / 16) * 100 = 2 */ | |
| line-height: 1em; |
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
| ul,ol { | |
| list-style:none; | |
| } | |
| h1,h2,h3,h4,h5,h6,pre,code,p,caption,th,td { | |
| } | |
| address { | |
| font-style:normal; |
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
| /* Mobile landscape */ | |
| @media screen and (min-width: 480px) { | |
| } | |
| /* Small tablet portrait */ | |
| @media screen and (min-width: 600px) { | |
| } |
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 xmlns="http://www.w3.org/1999/xhtml" lang="en"> | |
| <head> | |
| <title>Wordpress Users Wales</title> | |
| <link rel="stylesheet" href="css/base.css" /> | |
| <link rel="stylesheet" href="css/responsive.css" /> | |
| <!-- insert in head --> | |
| <meta name=”viewport” content=”initial-scale=1.0, width=device-width” /> | |