Skip to content

Commit

Permalink
Add child theme of twenty fourteen
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip John committed Aug 25, 2015
1 parent 7ed6555 commit 017d3e6
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
9 changes: 9 additions & 0 deletions themes/twentyfourteenpointfive/functions.php
@@ -0,0 +1,9 @@
<?php

function pj_chrome_colouring_lovelyness() {

print '<meta name="theme-color" content="#a7b145">';

}
add_action( 'wp_head', 'pj_chrome_colouring_lovelyness' );

79 changes: 79 additions & 0 deletions themes/twentyfourteenpointfive/style.css
@@ -0,0 +1,79 @@
/*
Theme Name: Twenty Fourteen Point Five
Theme URI: http://example.com/twenty-fourteen
Author: Philip John
Author URI: http://philipjohn.me.uk
Description: Child of Twenty Fourteen to have awesomeness on my site
Version: 1.1
Template: twentyfourteen
*/

@import url('../twentyfourteen/style.css');

.site-header,
#secondary,
.site-footer,
.site:before {
background-color: #1e2a29;
}

.search-toggle,
.search-box,
.search-toggle.active,
.primary-navigation li:hover > a,
.primary-navigation li.focus > a,
.primary-navigation ul ul,
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
background-color: #a7b145;
}

a {
color: #a7b145;
}

.search-toggle:hover,
.site-navigation a:hover,
.primary-navigation ul ul a:hover,
.primary-navigation ul ul li.focus > a,
button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
button:active,
.button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
.entry-meta .tag-links a:hover {
background-color: #b7c68b;
}

a:active,
a:hover,
.widget a:hover,
.site-title a,
.site-title a:hover,
.site-navigation .current_page_item > a,
.site-navigation .current_page_ancestor > a,
.site-navigation .current-menu-item > a,
.site-navigation .current-menu-ancestor > a,
.entry-title a:hover,
.entry-meta a:hover,
.post-navigation a:hover,
.image-navigation a:hover {
color: #b7c68b;
}

.entry-meta .tag-links a:hover:before {
border-right-color: #b7c68b;
}

0 comments on commit 017d3e6

Please sign in to comment.