/* Enter Your Custom CSS Here */

/* Don't forget to check files in
 * ~/public_html/wordpress/wp-content/themes/twentyfourteen-celt/ 
 * for additional customizations.   
 */

/* copied from posts on this page: 
 * https://wordpress.org/support/topic/twenty-fourteen-theme-not-full-width-for-high-resolution-monitors
 */
.site,
.site-header {
 max-width: 100%;
}
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta, .page-content {
 /* Original max-width: 474px */
 max-width: 800px;
}

/* to correct image cut-off when left/right aligned; copied from
 * https://wordpress.org/support/topic/change-content-width-without-cutting-off-left-and-right-aligned-images
 */
.full-width .site-content blockquote.alignleft,
.full-width .site-content img.size-full.alignleft,
.full-width .site-content img.size-large.alignleft,
.full-width .site-content img.size-medium.alignleft,
.full-width .site-content .wp-caption.alignleft {
   margin-left: 0;   /* was -168px */
}

.full-width .site-content blockquote.alignright,
.full-width .site-content img.size-full.alignright,
.full-width .site-content img.size-large.alignright,
.full-width .site-content img.size-medium.alignright,
.full-width .site-content .wp-caption.alignright {
   margin-right: 0;  /* was -168px */
}

/* disabling hyphenation per
 * http://kenneth.io/blog/2012/03/04/word-wrapping-hypernation-using-css/
 */
.entry-content { 
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* title/header font tweaks
 * NOTE: Does NOT appear to override theme customizations set via UI.
 * for reference, (some) font weights: 500 medium, 700 bold
 * see also: @font-face entries in style.css
 */
.site-content h1, .site-content h2, .site-content h3 {
    font-family: "Encode Sans Compressed",sans-serif;
}

.site-content h1 {
    font-weight:700;
}

.site-content h2 {
    font-weight:500;
}

.site-content h3 {
  	text-transform: uppercase;
    font-weight:500;
}

h1.entry-title {
    font-weight:700;
}

