This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
andrewmbacon
committed
Aug 18, 2014
0 parents
commit 7398ba4
Showing
10 changed files
with
8,047 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Cornerstone Starter Kit | ||
======= | ||
|
||
Theme development tutorial for Cornerstone. Stripped of any child or secondary feautres. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
Cornerstone Starter Kit | ||
*/ | ||
/* | ||
Variables listed in order | ||
Global | ||
Links | ||
Colors | ||
Border Radius | ||
Header | ||
Navigation bar | ||
Widgets | ||
Content | ||
Footer | ||
Megafooter | ||
Buttons | ||
*/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/* | ||
* | ||
* functions.php | ||
This is the functions.php files. If for whatever reason you would like to input new functions into cornerstone or tweak ones that are already created (view original theme for more information) you can use this functions.php to overwrite it. ' | ||
* | ||
*/ | ||
|
||
// Any custom js or css - Code to make your javascript work with the theme. | ||
|
||
function starterkit_scripts() { | ||
wp_enqueue_script( 'starterkit-js', get_stylesheet_directory_uri() . '/javascripts/min/starterkit.min.js', array( 'jquery' )); | ||
} | ||
|
||
add_action( 'wp_enqueue_scripts', 'starterkit_scripts'); | ||
|
||
|
||
|
||
|
||
?> |
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
//Custom Javascript | ||
//if you would like to customize your Cornerstone child theme with Javascript the code should go here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
/* | ||
Cornerstone Starter Kit | ||
*/ | ||
/* | ||
Variables listed in order | ||
Global | ||
Links | ||
Colors | ||
Border Radius | ||
Header | ||
Navigation bar | ||
Widgets | ||
Content | ||
Footer | ||
Megafooter | ||
Buttons | ||
*/ | ||
|
||
//////////////////////////////////////////////////// | ||
//Global Default | ||
//Link Colors | ||
$link-color: #388ac3; | ||
$link-hover-color: darken($link-color, 15%) !default; | ||
|
||
// Primary Colors (Bootstrap) | ||
$brand-primary: #428bca !default; | ||
$brand-success: #5cb85c !default; | ||
$brand-info: #5bc0de !default; | ||
$brand-warning: #f0ad4e !default; | ||
$brand-danger: #d9534f !default; | ||
|
||
// Secondary Colors (Bootstrap) | ||
$gray-darker: lighten(#000, 13.5%) !default; // #222 | ||
$gray-dark: lighten(#000, 20%) !default; // #333 | ||
$gray: lighten(#000, 33.5%) !default; // #555 | ||
$gray-light: lighten(#000, 46.7%) !default; // #777 | ||
$gray-lighter: lighten(#000, 93.5%) !default; // #eee | ||
|
||
// Border Radius | ||
$border-radius-base: 0; | ||
$border-radius-large: 0; | ||
$border-radius-small: 0; | ||
|
||
|
||
|
||
// Header | ||
$header_border: #000000; | ||
|
||
$title_parent: #879197; | ||
$title_parentHover: #000; | ||
|
||
$title_txt: #879197; | ||
$title_txtHover: #000; | ||
|
||
// Navigation bar | ||
$navbar-margin-bottom: 0; | ||
$navbar-collapse-max-height: none; | ||
$navbar-default-bg: transparent; | ||
$navbar-default-border: transparent; | ||
|
||
$navbar-default-link-color: black; | ||
$navbar-default-link-hover-color: grey; | ||
$navbar-default-link-hover-bg: transparent; | ||
$navbar-default-link-active-color: darkgrey; | ||
$navbar-default-link-active-bg: transparent; | ||
|
||
$dropdown-bg: #e9e9e9 ; | ||
$dropdown-link-color: #444 ; | ||
$dropdown-link-hover-color: #fff ; | ||
$dropdown-link-hover-bg: #b8000f ; | ||
|
||
$dropdown-link-active-color: #000 ; | ||
$dropdown-link-active-bg: #d0d0d0 ; | ||
|
||
|
||
// Widgets | ||
$widget-border-color: #ccc !default; | ||
$widget-border-radius: $border-radius-base !default; | ||
$widget-border-width: 1px !default; | ||
$widget-margin: 0 0 1.5em 0 !default; | ||
$widget-padding: 0 !default; | ||
$widget-bg: #fff !default; | ||
$widget-content-margin: 1em; | ||
$widget-color: #000 !default; | ||
$widget-size: 1em !default; | ||
$widget-link-color: $link-color !default; | ||
$widget-link-hover: $link-hover-color !default; | ||
|
||
|
||
// Widgets - Calendar | ||
$uc-ecw-month-bg: #f5f5f5; | ||
$uc-ecw-month-color: #2e77b0; | ||
$uc-ecw-day-bg: #f5f5f5; | ||
$uc-ecw-day-color: #454545; | ||
|
||
|
||
// Content | ||
$contentPadding: 31px 0 4em; | ||
|
||
$headings-font-weight: bold; | ||
$headings-color:#0c285b; | ||
|
||
|
||
|
||
// Footer | ||
$footers-border-color: #000000; | ||
$footers-border-width: 1px 0 0 0; | ||
|
||
$footers-margin: 0; | ||
$footers-bg: #ffffff; | ||
$footers-link-color: #5a595a; | ||
$footers-link-hover: #343434; | ||
|
||
// Mega Footer | ||
$megafooter-bg: transparent !default; | ||
$megafooter-widget-bg: transparent !default; | ||
|
||
//For each of Bootstrap's buttons, define text, background and border color. | ||
$btn-font-weight: normal !default; | ||
|
||
$btn-default-color: #333 !default; | ||
$btn-default-bg: #fff !default; | ||
$btn-default-border: #ccc !default; | ||
|
||
$btn-primary-color: #fff !default; | ||
$btn-primary-bg: $brand-primary !default; | ||
$btn-primary-border: darken($btn-primary-bg, 5%) !default; | ||
|
||
$btn-success-color: #fff !default; | ||
$btn-success-bg: $brand-success !default; | ||
$btn-success-border: darken($btn-success-bg, 5%) !default; | ||
|
||
$btn-info-color: #fff !default; | ||
$btn-info-bg: $brand-info !default; | ||
$btn-info-border: darken($btn-info-bg, 5%) !default; | ||
|
||
$btn-warning-color: #fff !default; | ||
$btn-warning-bg: $brand-warning !default; | ||
$btn-warning-border: darken($btn-warning-bg, 5%) !default; | ||
|
||
$btn-danger-color: #fff !default; | ||
$btn-danger-bg: $brand-danger !default; | ||
$btn-danger-border: darken($btn-danger-bg, 5%) !default; | ||
|
||
$btn-link-disabled-color: $gray-light !default; | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.