Skip to content

Commit

Permalink
CSS tweaks and updates as I build out the dummy content on the demo site
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhodgins committed Feb 10, 2013
1 parent f8793ea commit 04d2793
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 11 deletions.
9 changes: 8 additions & 1 deletion css/typography.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ body {
}

.entry-header h1.entry-title {
font-weight: 700;
font-size:28pt;
letter-spacing: -0.5px;
line-height: 100%;
font-weight:700;
}

.widget-area .widget h3.widget-title {
Expand All @@ -41,6 +44,10 @@ body {
text-transform:uppercase;
}

.entry-content .brand {
font-weight: 600;
}

/* Default Headline sizes */

.entry-content h1.huge {
Expand Down
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Sets up the content width value based on the theme's design and stylesheet.
*/
if ( ! isset( $content_width ) )
$content_width = 625;
$content_width = 980;

/**
* Sets up theme defaults and registers the various WordPress features that
Expand Down
3 changes: 3 additions & 0 deletions header.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1, user-scalable = no">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
Expand Down
12 changes: 7 additions & 5 deletions js/boilerstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

$( document ).ready(function() {


keypress.counting_combo("meta f", function(event) {
event.preventDefault();
$(".search-query:text:visible:last").focus();
});
// Keyboard Shortcuts (via keypress.js)
keypress.counting_combo("meta f", function(event) {
event.preventDefault();
$(".search-query:text:visible:last").focus();
});

// Gesture Shortcuts (via hammer.js)

});
6 changes: 2 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -895,17 +895,15 @@ article.sticky .featured-post {
.entry-content code,
.comment-content code {
font-family: Consolas, Monaco, Lucida Console, monospace;
font-size: 12px;
font-size: 0.857142857rem;
font-size: 9pt;
line-height: 2;
}
.entry-content pre,
.comment-content pre {
border: 1px solid #ededed;
color: #666;
font-family: Consolas, Monaco, Lucida Console, monospace;
font-size: 12px;
font-size: 0.857142857rem;
font-size: 9pt;
line-height: 1.714285714;
margin: 24px 0;
margin: 1.714285714rem 0;
Expand Down

0 comments on commit 04d2793

Please sign in to comment.