├── images ├── logo.png ├── favicon.ico └── logo@2x.png ├── screenshot.png ├── README.md ├── js ├── coreyms.js └── magnific.min.js ├── css └── magnific-popup.css ├── functions.php └── style.css /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreyMSchafer/CoreyMS-Genesis-Theme/HEAD/images/logo.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreyMSchafer/CoreyMS-Genesis-Theme/HEAD/screenshot.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreyMSchafer/CoreyMS-Genesis-Theme/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreyMSchafer/CoreyMS-Genesis-Theme/HEAD/images/logo@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Genesis Sample Theme 2 | 3 | Github project link: https://github.com/copyblogger/genesis-sample 4 | 5 | 6 | ## Installation Instructions 7 | 8 | 1. Upload the Genesis Sample theme folder via FTP to your wp-content/themes/ directory. (The Genesis parent theme needs to be in the wp-content/themes/ directory as well.) 9 | 2. Go to your WordPress dashboard and select Appearance. 10 | 3. Activate the Genesis Sample theme. 11 | 4. Inside your WordPress dashboard, go to Genesis > Theme Settings and configure them to your liking. 12 | 13 | 14 | ## Theme Support 15 | 16 | Please visit http://my.studiopress.com/help/ for theme support. 17 | -------------------------------------------------------------------------------- /js/coreyms.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | 3 | //Set the Entry Title for Article Image Captions 4 | var entryTitle = $('.entry-title').text(); 5 | $('.single-post').magnificPopup({ 6 | delegate: '.article-image', 7 | type: 'image', 8 | tLoading: 'Loading image #%curr%...', 9 | mainClass: 'mfp-img-mobile', 10 | gallery: { 11 | enabled: true, 12 | navigateByImgClick: true, 13 | preload: [0,1] // Will preload 0 - before current, and 1 after the current image 14 | }, 15 | image: { 16 | tError: 'The image #%curr% could not be loaded.', 17 | titleSrc: function(item) { 18 | if(item.el.siblings('.wp-caption-text').text() === '') { 19 | //If image doesn't have a caption, use Image Title 20 | return item.el.children('img').attr('title') + '' + entryTitle + ''; 21 | } else { 22 | return item.el.siblings('.wp-caption-text').text() + '' + entryTitle + ''; 23 | } 24 | } 25 | } 26 | }); 27 | 28 | $('.single-image').magnificPopup({ 29 | type: 'image', 30 | closeOnContentClick: true, 31 | mainClass: 'mfp-img-mobile', 32 | image: { 33 | verticalFit: true, 34 | titleSrc: function(item) { 35 | if(item.el.siblings('.wp-caption-text').text() === '') { 36 | //If image doesn't have a caption, use Image Title 37 | return item.el.children('img').attr('title') + '' + entryTitle + ''; 38 | } else { 39 | return item.el.siblings('.wp-caption-text').text() + '' + entryTitle + ''; 40 | } 41 | } 42 | } 43 | }); 44 | 45 | //Link Article Images on home and archive pages to the article. 46 | $('.home, .archive').find('.article-image').each(function(){ 47 | this.href = $(this).closest('article').find('.entry-title a').attr('href'); 48 | }) 49 | }); -------------------------------------------------------------------------------- /css/magnific-popup.css: -------------------------------------------------------------------------------- 1 | /* Magnific Popup CSS */ 2 | .mfp-bg { 3 | top: 0; 4 | left: 0; 5 | width: 100%; 6 | height: 100%; 7 | z-index: 1042; 8 | overflow: hidden; 9 | position: fixed; 10 | background: #0b0b0b; 11 | opacity: 0.8; 12 | filter: alpha(opacity=80); } 13 | 14 | .mfp-wrap { 15 | top: 0; 16 | left: 0; 17 | width: 100%; 18 | height: 100%; 19 | z-index: 1043; 20 | position: fixed; 21 | outline: none !important; 22 | -webkit-backface-visibility: hidden; } 23 | 24 | .mfp-container { 25 | text-align: center; 26 | position: absolute; 27 | width: 100%; 28 | height: 100%; 29 | left: 0; 30 | top: 0; 31 | padding: 0 8px; 32 | -webkit-box-sizing: border-box; 33 | -moz-box-sizing: border-box; 34 | box-sizing: border-box; } 35 | 36 | .mfp-container:before { 37 | content: ''; 38 | display: inline-block; 39 | height: 100%; 40 | vertical-align: middle; } 41 | 42 | .mfp-align-top .mfp-container:before { 43 | display: none; } 44 | 45 | .mfp-content { 46 | position: relative; 47 | display: inline-block; 48 | vertical-align: middle; 49 | margin: 0 auto; 50 | text-align: left; 51 | z-index: 1045; } 52 | 53 | .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content { 54 | width: 100%; 55 | cursor: auto; } 56 | 57 | .mfp-ajax-cur { 58 | cursor: progress; } 59 | 60 | .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { 61 | cursor: -moz-zoom-out; 62 | cursor: -webkit-zoom-out; 63 | cursor: zoom-out; } 64 | 65 | .mfp-zoom { 66 | cursor: pointer; 67 | cursor: -webkit-zoom-in; 68 | cursor: -moz-zoom-in; 69 | cursor: zoom-in; } 70 | 71 | .mfp-auto-cursor .mfp-content { 72 | cursor: auto; } 73 | 74 | .mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter { 75 | -webkit-user-select: none; 76 | -moz-user-select: none; 77 | user-select: none; } 78 | 79 | .mfp-loading.mfp-figure { 80 | display: none; } 81 | 82 | .mfp-hide { 83 | display: none !important; } 84 | 85 | .mfp-preloader { 86 | color: #cccccc; 87 | position: absolute; 88 | top: 50%; 89 | width: auto; 90 | text-align: center; 91 | margin-top: -0.8em; 92 | left: 8px; 93 | right: 8px; 94 | z-index: 1044; } 95 | .mfp-preloader a { 96 | color: #cccccc; } 97 | .mfp-preloader a:hover { 98 | color: white; } 99 | 100 | .mfp-s-ready .mfp-preloader { 101 | display: none; } 102 | 103 | .mfp-s-error .mfp-content { 104 | display: none; } 105 | 106 | button.mfp-close, button.mfp-arrow { 107 | overflow: visible; 108 | cursor: pointer; 109 | background: transparent; 110 | border: 0; 111 | -webkit-appearance: none; 112 | display: block; 113 | outline: none; 114 | padding: 0; 115 | z-index: 1046; 116 | -webkit-box-shadow: none; 117 | box-shadow: none; } 118 | button::-moz-focus-inner { 119 | padding: 0; 120 | border: 0; } 121 | 122 | .mfp-close { 123 | width: 44px; 124 | height: 44px; 125 | line-height: 44px; 126 | position: absolute; 127 | right: 0; 128 | top: 0; 129 | text-decoration: none; 130 | text-align: center; 131 | opacity: 0.65; 132 | filter: alpha(opacity=65); 133 | padding: 0 0 18px 10px; 134 | color: white; 135 | font-style: normal; 136 | font-size: 28px; 137 | font-family: Arial, Baskerville, monospace; } 138 | .mfp-close:hover, .mfp-close:focus { 139 | opacity: 1; 140 | filter: alpha(opacity=100); } 141 | .mfp-close:active { 142 | top: 1px; } 143 | 144 | .mfp-close-btn-in .mfp-close { 145 | color: #333333; } 146 | 147 | .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close { 148 | color: white; 149 | right: -6px; 150 | text-align: right; 151 | padding-right: 6px; 152 | width: 100%; } 153 | 154 | .mfp-counter { 155 | position: absolute; 156 | top: 0; 157 | right: 0; 158 | color: #cccccc; 159 | font-size: 12px; 160 | line-height: 18px; } 161 | 162 | .mfp-arrow { 163 | position: absolute; 164 | opacity: 0.65; 165 | filter: alpha(opacity=65); 166 | margin: 0; 167 | top: 50%; 168 | margin-top: -55px; 169 | padding: 0; 170 | width: 90px; 171 | height: 110px; 172 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } 173 | .mfp-arrow:active { 174 | margin-top: -54px; } 175 | .mfp-arrow:hover, .mfp-arrow:focus { 176 | opacity: 1; 177 | filter: alpha(opacity=100); } 178 | .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a { 179 | content: ''; 180 | display: block; 181 | width: 0; 182 | height: 0; 183 | position: absolute; 184 | left: 0; 185 | top: 0; 186 | margin-top: 35px; 187 | margin-left: 35px; 188 | border: medium inset transparent; } 189 | .mfp-arrow:after, .mfp-arrow .mfp-a { 190 | border-top-width: 13px; 191 | border-bottom-width: 13px; 192 | top: 8px; } 193 | .mfp-arrow:before, .mfp-arrow .mfp-b { 194 | border-top-width: 21px; 195 | border-bottom-width: 21px; 196 | opacity: 0.7; } 197 | 198 | .mfp-arrow-left { 199 | left: 0; } 200 | .mfp-arrow-left:after, .mfp-arrow-left .mfp-a { 201 | border-right: 17px solid white; 202 | margin-left: 31px; } 203 | .mfp-arrow-left:before, .mfp-arrow-left .mfp-b { 204 | margin-left: 25px; 205 | border-right: 27px solid #3f3f3f; } 206 | 207 | .mfp-arrow-right { 208 | right: 0; } 209 | .mfp-arrow-right:after, .mfp-arrow-right .mfp-a { 210 | border-left: 17px solid white; 211 | margin-left: 39px; } 212 | .mfp-arrow-right:before, .mfp-arrow-right .mfp-b { 213 | border-left: 27px solid #3f3f3f; } 214 | 215 | .mfp-iframe-holder { 216 | padding-top: 40px; 217 | padding-bottom: 40px; } 218 | .mfp-iframe-holder .mfp-content { 219 | line-height: 0; 220 | width: 100%; 221 | max-width: 900px; } 222 | .mfp-iframe-holder .mfp-close { 223 | top: -40px; } 224 | 225 | .mfp-iframe-scaler { 226 | width: 100%; 227 | height: 0; 228 | overflow: hidden; 229 | padding-top: 56.25%; } 230 | .mfp-iframe-scaler iframe { 231 | position: absolute; 232 | display: block; 233 | top: 0; 234 | left: 0; 235 | width: 100%; 236 | height: 100%; 237 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 238 | background: black; } 239 | 240 | /* Main image in popup */ 241 | img.mfp-img { 242 | width: auto; 243 | max-width: 100%; 244 | height: auto; 245 | display: block; 246 | line-height: 0; 247 | -webkit-box-sizing: border-box; 248 | -moz-box-sizing: border-box; 249 | box-sizing: border-box; 250 | padding: 40px 0 40px; 251 | margin: 0 auto; } 252 | 253 | /* The shadow behind the image */ 254 | .mfp-figure { 255 | line-height: 0; } 256 | .mfp-figure:after { 257 | content: ''; 258 | position: absolute; 259 | left: 0; 260 | top: 40px; 261 | bottom: 40px; 262 | display: block; 263 | right: 0; 264 | width: auto; 265 | height: auto; 266 | z-index: -1; 267 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 268 | background: #444444; } 269 | .mfp-figure small { 270 | color: #bdbdbd; 271 | display: block; 272 | font-size: 12px; 273 | line-height: 14px; } 274 | .mfp-figure figure { 275 | margin: 0; } 276 | 277 | .mfp-bottom-bar { 278 | margin-top: -36px; 279 | position: absolute; 280 | top: 100%; 281 | left: 0; 282 | width: 100%; 283 | cursor: auto; } 284 | 285 | .mfp-title { 286 | text-align: left; 287 | line-height: 18px; 288 | color: #f3f3f3; 289 | word-wrap: break-word; 290 | padding-right: 36px; } 291 | 292 | .mfp-image-holder .mfp-content { 293 | max-width: 100%; } 294 | 295 | .mfp-gallery .mfp-image-holder .mfp-figure { 296 | cursor: pointer; } 297 | 298 | @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { 299 | /** 300 | * Remove all paddings around the image on small screen 301 | */ 302 | .mfp-img-mobile .mfp-image-holder { 303 | padding-left: 0; 304 | padding-right: 0; } 305 | .mfp-img-mobile img.mfp-img { 306 | padding: 0; } 307 | .mfp-img-mobile .mfp-figure:after { 308 | top: 0; 309 | bottom: 0; } 310 | .mfp-img-mobile .mfp-figure small { 311 | display: inline; 312 | margin-left: 5px; } 313 | .mfp-img-mobile .mfp-bottom-bar { 314 | background: rgba(0, 0, 0, 0.6); 315 | bottom: 0; 316 | margin: 0; 317 | top: auto; 318 | padding: 3px 5px; 319 | position: fixed; 320 | -webkit-box-sizing: border-box; 321 | -moz-box-sizing: border-box; 322 | box-sizing: border-box; } 323 | .mfp-img-mobile .mfp-bottom-bar:empty { 324 | padding: 0; } 325 | .mfp-img-mobile .mfp-counter { 326 | right: 5px; 327 | top: 3px; } 328 | .mfp-img-mobile .mfp-close { 329 | top: 0; 330 | right: 0; 331 | width: 35px; 332 | height: 35px; 333 | line-height: 35px; 334 | background: rgba(0, 0, 0, 0.6); 335 | position: fixed; 336 | text-align: center; 337 | padding: 0; } } 338 | 339 | @media all and (max-width: 900px) { 340 | .mfp-arrow { 341 | -webkit-transform: scale(0.75); 342 | transform: scale(0.75); } 343 | .mfp-arrow-left { 344 | -webkit-transform-origin: 0; 345 | transform-origin: 0; } 346 | .mfp-arrow-right { 347 | -webkit-transform-origin: 100%; 348 | transform-origin: 100%; } 349 | .mfp-container { 350 | padding-left: 6px; 351 | padding-right: 6px; } } 352 | 353 | .mfp-ie7 .mfp-img { 354 | padding: 0; } 355 | .mfp-ie7 .mfp-bottom-bar { 356 | width: 600px; 357 | left: 50%; 358 | margin-left: -300px; 359 | margin-top: 5px; 360 | padding-bottom: 5px; } 361 | .mfp-ie7 .mfp-container { 362 | padding: 0; } 363 | .mfp-ie7 .mfp-content { 364 | padding-top: 44px; } 365 | .mfp-ie7 .mfp-close { 366 | top: 0; 367 | right: 0; 368 | padding-top: 0; } 369 | -------------------------------------------------------------------------------- /js/magnific.min.js: -------------------------------------------------------------------------------- 1 | /*! Magnific Popup - v0.9.9 - 2014-09-06 2 | * http://dimsemenov.com/plugins/magnific-popup/ 3 | * Copyright (c) 2014 Dmitry Semenov; */ 4 | (function(e){var t,n,i,o,r,a,s,l="Close",c="BeforeClose",d="AfterClose",u="BeforeAppend",p="MarkupParse",f="Open",m="Change",g="mfp",h="."+g,v="mfp-ready",C="mfp-removing",y="mfp-prevent-close",w=function(){},b=!!window.jQuery,I=e(window),x=function(e,n){t.ev.on(g+e+h,n)},k=function(t,n,i,o){var r=document.createElement("div");return r.className="mfp-"+t,i&&(r.innerHTML=i),o?n&&n.appendChild(r):(r=e(r),n&&r.appendTo(n)),r},T=function(n,i){t.ev.triggerHandler(g+n,i),t.st.callbacks&&(n=n.charAt(0).toLowerCase()+n.slice(1),t.st.callbacks[n]&&t.st.callbacks[n].apply(t,e.isArray(i)?i:[i]))},E=function(n){return n===s&&t.currTemplate.closeBtn||(t.currTemplate.closeBtn=e(t.st.closeMarkup.replace("%title%",t.st.tClose)),s=n),t.currTemplate.closeBtn},_=function(){e.magnificPopup.instance||(t=new w,t.init(),e.magnificPopup.instance=t)},S=function(){var e=document.createElement("p").style,t=["ms","O","Moz","Webkit"];if(void 0!==e.transition)return!0;for(;t.length;)if(t.pop()+"Transition"in e)return!0;return!1};w.prototype={constructor:w,init:function(){var n=navigator.appVersion;t.isIE7=-1!==n.indexOf("MSIE 7."),t.isIE8=-1!==n.indexOf("MSIE 8."),t.isLowIE=t.isIE7||t.isIE8,t.isAndroid=/android/gi.test(n),t.isIOS=/iphone|ipad|ipod/gi.test(n),t.supportsTransition=S(),t.probablyMobile=t.isAndroid||t.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),o=e(document),t.popupsCache={}},open:function(n){i||(i=e(document.body));var r;if(n.isObj===!1){t.items=n.items.toArray(),t.index=0;var s,l=n.items;for(r=0;l.length>r;r++)if(s=l[r],s.parsed&&(s=s.el[0]),s===n.el[0]){t.index=r;break}}else t.items=e.isArray(n.items)?n.items:[n.items],t.index=n.index||0;if(t.isOpen)return t.updateItemHTML(),void 0;t.types=[],a="",t.ev=n.mainEl&&n.mainEl.length?n.mainEl.eq(0):o,n.key?(t.popupsCache[n.key]||(t.popupsCache[n.key]={}),t.currTemplate=t.popupsCache[n.key]):t.currTemplate={},t.st=e.extend(!0,{},e.magnificPopup.defaults,n),t.fixedContentPos="auto"===t.st.fixedContentPos?!t.probablyMobile:t.st.fixedContentPos,t.st.modal&&(t.st.closeOnContentClick=!1,t.st.closeOnBgClick=!1,t.st.showCloseBtn=!1,t.st.enableEscapeKey=!1),t.bgOverlay||(t.bgOverlay=k("bg").on("click"+h,function(){t.close()}),t.wrap=k("wrap").attr("tabindex",-1).on("click"+h,function(e){t._checkIfClose(e.target)&&t.close()}),t.container=k("container",t.wrap)),t.contentContainer=k("content"),t.st.preloader&&(t.preloader=k("preloader",t.container,t.st.tLoading));var c=e.magnificPopup.modules;for(r=0;c.length>r;r++){var d=c[r];d=d.charAt(0).toUpperCase()+d.slice(1),t["init"+d].call(t)}T("BeforeOpen"),t.st.showCloseBtn&&(t.st.closeBtnInside?(x(p,function(e,t,n,i){n.close_replaceWith=E(i.type)}),a+=" mfp-close-btn-in"):t.wrap.append(E())),t.st.alignTop&&(a+=" mfp-align-top"),t.fixedContentPos?t.wrap.css({overflow:t.st.overflowY,overflowX:"hidden",overflowY:t.st.overflowY}):t.wrap.css({top:I.scrollTop(),position:"absolute"}),(t.st.fixedBgPos===!1||"auto"===t.st.fixedBgPos&&!t.fixedContentPos)&&t.bgOverlay.css({height:o.height(),position:"absolute"}),t.st.enableEscapeKey&&o.on("keyup"+h,function(e){27===e.keyCode&&t.close()}),I.on("resize"+h,function(){t.updateSize()}),t.st.closeOnContentClick||(a+=" mfp-auto-cursor"),a&&t.wrap.addClass(a);var u=t.wH=I.height(),m={};if(t.fixedContentPos&&t._hasScrollBar(u)){var g=t._getScrollbarSize();g&&(m.marginRight=g)}t.fixedContentPos&&(t.isIE7?e("body, html").css("overflow","hidden"):m.overflow="hidden");var C=t.st.mainClass;return t.isIE7&&(C+=" mfp-ie7"),C&&t._addClassToMFP(C),t.updateItemHTML(),T("BuildControls"),e("html").css(m),t.bgOverlay.add(t.wrap).prependTo(t.st.prependTo||i),t._lastFocusedEl=document.activeElement,setTimeout(function(){t.content?(t._addClassToMFP(v),t._setFocus()):t.bgOverlay.addClass(v),o.on("focusin"+h,t._onFocusIn)},16),t.isOpen=!0,t.updateSize(u),T(f),n},close:function(){t.isOpen&&(T(c),t.isOpen=!1,t.st.removalDelay&&!t.isLowIE&&t.supportsTransition?(t._addClassToMFP(C),setTimeout(function(){t._close()},t.st.removalDelay)):t._close())},_close:function(){T(l);var n=C+" "+v+" ";if(t.bgOverlay.detach(),t.wrap.detach(),t.container.empty(),t.st.mainClass&&(n+=t.st.mainClass+" "),t._removeClassFromMFP(n),t.fixedContentPos){var i={marginRight:""};t.isIE7?e("body, html").css("overflow",""):i.overflow="",e("html").css(i)}o.off("keyup"+h+" focusin"+h),t.ev.off(h),t.wrap.attr("class","mfp-wrap").removeAttr("style"),t.bgOverlay.attr("class","mfp-bg"),t.container.attr("class","mfp-container"),!t.st.showCloseBtn||t.st.closeBtnInside&&t.currTemplate[t.currItem.type]!==!0||t.currTemplate.closeBtn&&t.currTemplate.closeBtn.detach(),t._lastFocusedEl&&e(t._lastFocusedEl).focus(),t.currItem=null,t.content=null,t.currTemplate=null,t.prevHeight=0,T(d)},updateSize:function(e){if(t.isIOS){var n=document.documentElement.clientWidth/window.innerWidth,i=window.innerHeight*n;t.wrap.css("height",i),t.wH=i}else t.wH=e||I.height();t.fixedContentPos||t.wrap.css("height",t.wH),T("Resize")},updateItemHTML:function(){var n=t.items[t.index];t.contentContainer.detach(),t.content&&t.content.detach(),n.parsed||(n=t.parseEl(t.index));var i=n.type;if(T("BeforeChange",[t.currItem?t.currItem.type:"",i]),t.currItem=n,!t.currTemplate[i]){var o=t.st[i]?t.st[i].markup:!1;T("FirstMarkupParse",o),t.currTemplate[i]=o?e(o):!0}r&&r!==n.type&&t.container.removeClass("mfp-"+r+"-holder");var a=t["get"+i.charAt(0).toUpperCase()+i.slice(1)](n,t.currTemplate[i]);t.appendContent(a,i),n.preloaded=!0,T(m,n),r=n.type,t.container.prepend(t.contentContainer),T("AfterChange")},appendContent:function(e,n){t.content=e,e?t.st.showCloseBtn&&t.st.closeBtnInside&&t.currTemplate[n]===!0?t.content.find(".mfp-close").length||t.content.append(E()):t.content=e:t.content="",T(u),t.container.addClass("mfp-"+n+"-holder"),t.contentContainer.append(t.content)},parseEl:function(n){var i,o=t.items[n];if(o.tagName?o={el:e(o)}:(i=o.type,o={data:o,src:o.src}),o.el){for(var r=t.types,a=0;r.length>a;a++)if(o.el.hasClass("mfp-"+r[a])){i=r[a];break}o.src=o.el.attr("data-mfp-src"),o.src||(o.src=o.el.attr("href"))}return o.type=i||t.st.type||"inline",o.index=n,o.parsed=!0,t.items[n]=o,T("ElementParse",o),t.items[n]},addGroup:function(e,n){var i=function(i){i.mfpEl=this,t._openClick(i,e,n)};n||(n={});var o="click.magnificPopup";n.mainEl=e,n.items?(n.isObj=!0,e.off(o).on(o,i)):(n.isObj=!1,n.delegate?e.off(o).on(o,n.delegate,i):(n.items=e,e.off(o).on(o,i)))},_openClick:function(n,i,o){var r=void 0!==o.midClick?o.midClick:e.magnificPopup.defaults.midClick;if(r||2!==n.which&&!n.ctrlKey&&!n.metaKey){var a=void 0!==o.disableOn?o.disableOn:e.magnificPopup.defaults.disableOn;if(a)if(e.isFunction(a)){if(!a.call(t))return!0}else if(a>I.width())return!0;n.type&&(n.preventDefault(),t.isOpen&&n.stopPropagation()),o.el=e(n.mfpEl),o.delegate&&(o.items=i.find(o.delegate)),t.open(o)}},updateStatus:function(e,i){if(t.preloader){n!==e&&t.container.removeClass("mfp-s-"+n),i||"loading"!==e||(i=t.st.tLoading);var o={status:e,text:i};T("UpdateStatus",o),e=o.status,i=o.text,t.preloader.html(i),t.preloader.find("a").on("click",function(e){e.stopImmediatePropagation()}),t.container.addClass("mfp-s-"+e),n=e}},_checkIfClose:function(n){if(!e(n).hasClass(y)){var i=t.st.closeOnContentClick,o=t.st.closeOnBgClick;if(i&&o)return!0;if(!t.content||e(n).hasClass("mfp-close")||t.preloader&&n===t.preloader[0])return!0;if(n===t.content[0]||e.contains(t.content[0],n)){if(i)return!0}else if(o&&e.contains(document,n))return!0;return!1}},_addClassToMFP:function(e){t.bgOverlay.addClass(e),t.wrap.addClass(e)},_removeClassFromMFP:function(e){this.bgOverlay.removeClass(e),t.wrap.removeClass(e)},_hasScrollBar:function(e){return(t.isIE7?o.height():document.body.scrollHeight)>(e||I.height())},_setFocus:function(){(t.st.focus?t.content.find(t.st.focus).eq(0):t.wrap).focus()},_onFocusIn:function(n){return n.target===t.wrap[0]||e.contains(t.wrap[0],n.target)?void 0:(t._setFocus(),!1)},_parseMarkup:function(t,n,i){var o;i.data&&(n=e.extend(i.data,n)),T(p,[t,n,i]),e.each(n,function(e,n){if(void 0===n||n===!1)return!0;if(o=e.split("_"),o.length>1){var i=t.find(h+"-"+o[0]);if(i.length>0){var r=o[1];"replaceWith"===r?i[0]!==n[0]&&i.replaceWith(n):"img"===r?i.is("img")?i.attr("src",n):i.replaceWith(''):i.attr(o[1],n)}}else t.find(h+"-"+e).html(n)})},_getScrollbarSize:function(){if(void 0===t.scrollbarSize){var e=document.createElement("div");e.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(e),t.scrollbarSize=e.offsetWidth-e.clientWidth,document.body.removeChild(e)}return t.scrollbarSize}},e.magnificPopup={instance:null,proto:w.prototype,modules:[],open:function(t,n){return _(),t=t?e.extend(!0,{},t):{},t.isObj=!0,t.index=n||0,this.instance.open(t)},close:function(){return e.magnificPopup.instance&&e.magnificPopup.instance.close()},registerModule:function(t,n){n.options&&(e.magnificPopup.defaults[t]=n.options),e.extend(this.proto,n.proto),this.modules.push(t)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading..."}},e.fn.magnificPopup=function(n){_();var i=e(this);if("string"==typeof n)if("open"===n){var o,r=b?i.data("magnificPopup"):i[0].magnificPopup,a=parseInt(arguments[1],10)||0;r.items?o=r.items[a]:(o=i,r.delegate&&(o=o.find(r.delegate)),o=o.eq(a)),t._openClick({mfpEl:o},i,r)}else t.isOpen&&t[n].apply(t,Array.prototype.slice.call(arguments,1));else n=e.extend(!0,{},n),b?i.data("magnificPopup",n):i[0].magnificPopup=n,t.addGroup(i,n);return i};var P,O,z,M="inline",B=function(){z&&(O.after(z.addClass(P)).detach(),z=null)};e.magnificPopup.registerModule(M,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){t.types.push(M),x(l+"."+M,function(){B()})},getInline:function(n,i){if(B(),n.src){var o=t.st.inline,r=e(n.src);if(r.length){var a=r[0].parentNode;a&&a.tagName&&(O||(P=o.hiddenClass,O=k(P),P="mfp-"+P),z=r.after(O).detach().removeClass(P)),t.updateStatus("ready")}else t.updateStatus("error",o.tNotFound),r=e("
");return n.inlineElement=r,r}return t.updateStatus("ready"),t._parseMarkup(i,{},n),i}}});var F,H="ajax",L=function(){F&&i.removeClass(F)},A=function(){L(),t.req&&t.req.abort()};e.magnificPopup.registerModule(H,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){t.types.push(H),F=t.st.ajax.cursor,x(l+"."+H,A),x("BeforeChange."+H,A)},getAjax:function(n){F&&i.addClass(F),t.updateStatus("loading");var o=e.extend({url:n.src,success:function(i,o,r){var a={data:i,xhr:r};T("ParseAjax",a),t.appendContent(e(a.data),H),n.finished=!0,L(),t._setFocus(),setTimeout(function(){t.wrap.addClass(v)},16),t.updateStatus("ready"),T("AjaxContentAdded")},error:function(){L(),n.finished=n.loadError=!0,t.updateStatus("error",t.st.ajax.tError.replace("%url%",n.src))}},t.st.ajax.settings);return t.req=e.ajax(o),""}}});var j,N=function(n){if(n.data&&void 0!==n.data.title)return n.data.title;var i=t.st.image.titleSrc;if(i){if(e.isFunction(i))return i.call(t,n);if(n.el)return n.el.attr(i)||""}return""};e.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var e=t.st.image,n=".image";t.types.push("image"),x(f+n,function(){"image"===t.currItem.type&&e.cursor&&i.addClass(e.cursor)}),x(l+n,function(){e.cursor&&i.removeClass(e.cursor),I.off("resize"+h)}),x("Resize"+n,t.resizeImage),t.isLowIE&&x("AfterChange",t.resizeImage)},resizeImage:function(){var e=t.currItem;if(e&&e.img&&t.st.image.verticalFit){var n=0;t.isLowIE&&(n=parseInt(e.img.css("padding-top"),10)+parseInt(e.img.css("padding-bottom"),10)),e.img.css("max-height",t.wH-n)}},_onImageHasSize:function(e){e.img&&(e.hasSize=!0,j&&clearInterval(j),e.isCheckingImgSize=!1,T("ImageHasSize",e),e.imgHidden&&(t.content&&t.content.removeClass("mfp-loading"),e.imgHidden=!1))},findImageSize:function(e){var n=0,i=e.img[0],o=function(r){j&&clearInterval(j),j=setInterval(function(){return i.naturalWidth>0?(t._onImageHasSize(e),void 0):(n>200&&clearInterval(j),n++,3===n?o(10):40===n?o(50):100===n&&o(500),void 0)},r)};o(1)},getImage:function(n,i){var o=0,r=function(){n&&(n.img[0].complete?(n.img.off(".mfploader"),n===t.currItem&&(t._onImageHasSize(n),t.updateStatus("ready")),n.hasSize=!0,n.loaded=!0,T("ImageLoadComplete")):(o++,200>o?setTimeout(r,100):a()))},a=function(){n&&(n.img.off(".mfploader"),n===t.currItem&&(t._onImageHasSize(n),t.updateStatus("error",s.tError.replace("%url%",n.src))),n.hasSize=!0,n.loaded=!0,n.loadError=!0)},s=t.st.image,l=i.find(".mfp-img");if(l.length){var c=document.createElement("img");c.className="mfp-img",n.img=e(c).on("load.mfploader",r).on("error.mfploader",a),c.src=n.src,l.is("img")&&(n.img=n.img.clone()),c=n.img[0],c.naturalWidth>0?n.hasSize=!0:c.width||(n.hasSize=!1)}return t._parseMarkup(i,{title:N(n),img_replaceWith:n.img},n),t.resizeImage(),n.hasSize?(j&&clearInterval(j),n.loadError?(i.addClass("mfp-loading"),t.updateStatus("error",s.tError.replace("%url%",n.src))):(i.removeClass("mfp-loading"),t.updateStatus("ready")),i):(t.updateStatus("loading"),n.loading=!0,n.hasSize||(n.imgHidden=!0,i.addClass("mfp-loading"),t.findImageSize(n)),i)}}});var W,R=function(){return void 0===W&&(W=void 0!==document.createElement("p").style.MozTransform),W};e.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(e){return e.is("img")?e:e.find("img")}},proto:{initZoom:function(){var e,n=t.st.zoom,i=".zoom";if(n.enabled&&t.supportsTransition){var o,r,a=n.duration,s=function(e){var t=e.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),i="all "+n.duration/1e3+"s "+n.easing,o={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},r="transition";return o["-webkit-"+r]=o["-moz-"+r]=o["-o-"+r]=o[r]=i,t.css(o),t},d=function(){t.content.css("visibility","visible")};x("BuildControls"+i,function(){if(t._allowZoom()){if(clearTimeout(o),t.content.css("visibility","hidden"),e=t._getItemToZoom(),!e)return d(),void 0;r=s(e),r.css(t._getOffset()),t.wrap.append(r),o=setTimeout(function(){r.css(t._getOffset(!0)),o=setTimeout(function(){d(),setTimeout(function(){r.remove(),e=r=null,T("ZoomAnimationEnded")},16)},a)},16)}}),x(c+i,function(){if(t._allowZoom()){if(clearTimeout(o),t.st.removalDelay=a,!e){if(e=t._getItemToZoom(),!e)return;r=s(e)}r.css(t._getOffset(!0)),t.wrap.append(r),t.content.css("visibility","hidden"),setTimeout(function(){r.css(t._getOffset())},16)}}),x(l+i,function(){t._allowZoom()&&(d(),r&&r.remove(),e=null)})}},_allowZoom:function(){return"image"===t.currItem.type},_getItemToZoom:function(){return t.currItem.hasSize?t.currItem.img:!1},_getOffset:function(n){var i;i=n?t.currItem.img:t.st.zoom.opener(t.currItem.el||t.currItem);var o=i.offset(),r=parseInt(i.css("padding-top"),10),a=parseInt(i.css("padding-bottom"),10);o.top-=e(window).scrollTop()-r;var s={width:i.width(),height:(b?i.innerHeight():i[0].offsetHeight)-a-r};return R()?s["-moz-transform"]=s.transform="translate("+o.left+"px,"+o.top+"px)":(s.left=o.left,s.top=o.top),s}}});var Z="iframe",q="//about:blank",D=function(e){if(t.currTemplate[Z]){var n=t.currTemplate[Z].find("iframe");n.length&&(e||(n[0].src=q),t.isIE8&&n.css("display",e?"block":"none"))}};e.magnificPopup.registerModule(Z,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){t.types.push(Z),x("BeforeChange",function(e,t,n){t!==n&&(t===Z?D():n===Z&&D(!0))}),x(l+"."+Z,function(){D()})},getIframe:function(n,i){var o=n.src,r=t.st.iframe;e.each(r.patterns,function(){return o.indexOf(this.index)>-1?(this.id&&(o="string"==typeof this.id?o.substr(o.lastIndexOf(this.id)+this.id.length,o.length):this.id.call(this,o)),o=this.src.replace("%id%",o),!1):void 0});var a={};return r.srcAction&&(a[r.srcAction]=o),t._parseMarkup(i,a,n),t.updateStatus("ready"),i}}});var K=function(e){var n=t.items.length;return e>n-1?e-n:0>e?n+e:e},Y=function(e,t,n){return e.replace(/%curr%/gi,t+1).replace(/%total%/gi,n)};e.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var n=t.st.gallery,i=".mfp-gallery",r=Boolean(e.fn.mfpFastClick);return t.direction=!0,n&&n.enabled?(a+=" mfp-gallery",x(f+i,function(){n.navigateByImgClick&&t.wrap.on("click"+i,".mfp-img",function(){return t.items.length>1?(t.next(),!1):void 0}),o.on("keydown"+i,function(e){37===e.keyCode?t.prev():39===e.keyCode&&t.next()})}),x("UpdateStatus"+i,function(e,n){n.text&&(n.text=Y(n.text,t.currItem.index,t.items.length))}),x(p+i,function(e,i,o,r){var a=t.items.length;o.counter=a>1?Y(n.tCounter,r.index,a):""}),x("BuildControls"+i,function(){if(t.items.length>1&&n.arrows&&!t.arrowLeft){var i=n.arrowMarkup,o=t.arrowLeft=e(i.replace(/%title%/gi,n.tPrev).replace(/%dir%/gi,"left")).addClass(y),a=t.arrowRight=e(i.replace(/%title%/gi,n.tNext).replace(/%dir%/gi,"right")).addClass(y),s=r?"mfpFastClick":"click";o[s](function(){t.prev()}),a[s](function(){t.next()}),t.isIE7&&(k("b",o[0],!1,!0),k("a",o[0],!1,!0),k("b",a[0],!1,!0),k("a",a[0],!1,!0)),t.container.append(o.add(a))}}),x(m+i,function(){t._preloadTimeout&&clearTimeout(t._preloadTimeout),t._preloadTimeout=setTimeout(function(){t.preloadNearbyImages(),t._preloadTimeout=null},16)}),x(l+i,function(){o.off(i),t.wrap.off("click"+i),t.arrowLeft&&r&&t.arrowLeft.add(t.arrowRight).destroyMfpFastClick(),t.arrowRight=t.arrowLeft=null}),void 0):!1},next:function(){t.direction=!0,t.index=K(t.index+1),t.updateItemHTML()},prev:function(){t.direction=!1,t.index=K(t.index-1),t.updateItemHTML()},goTo:function(e){t.direction=e>=t.index,t.index=e,t.updateItemHTML()},preloadNearbyImages:function(){var e,n=t.st.gallery.preload,i=Math.min(n[0],t.items.length),o=Math.min(n[1],t.items.length);for(e=1;(t.direction?o:i)>=e;e++)t._preloadItem(t.index+e);for(e=1;(t.direction?i:o)>=e;e++)t._preloadItem(t.index-e)},_preloadItem:function(n){if(n=K(n),!t.items[n].preloaded){var i=t.items[n];i.parsed||(i=t.parseEl(n)),T("LazyLoad",i),"image"===i.type&&(i.img=e('').on("load.mfploader",function(){i.hasSize=!0}).on("error.mfploader",function(){i.hasSize=!0,i.loadError=!0,T("LazyLoadError",i)}).attr("src",i.src)),i.preloaded=!0}}}});var U="retina";e.magnificPopup.registerModule(U,{options:{replaceSrc:function(e){return e.src.replace(/\.\w+$/,function(e){return"@2x"+e})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var e=t.st.retina,n=e.ratio;n=isNaN(n)?n():n,n>1&&(x("ImageHasSize."+U,function(e,t){t.img.css({"max-width":t.img[0].naturalWidth/n,width:"100%"})}),x("ElementParse."+U,function(t,i){i.src=e.replaceSrc(i,n)}))}}}}),function(){var t=1e3,n="ontouchstart"in window,i=function(){I.off("touchmove"+r+" touchend"+r)},o="mfpFastClick",r="."+o;e.fn.mfpFastClick=function(o){return e(this).each(function(){var a,s=e(this);if(n){var l,c,d,u,p,f;s.on("touchstart"+r,function(e){u=!1,f=1,p=e.originalEvent?e.originalEvent.touches[0]:e.touches[0],c=p.clientX,d=p.clientY,I.on("touchmove"+r,function(e){p=e.originalEvent?e.originalEvent.touches:e.touches,f=p.length,p=p[0],(Math.abs(p.clientX-c)>10||Math.abs(p.clientY-d)>10)&&(u=!0,i())}).on("touchend"+r,function(e){i(),u||f>1||(a=!0,e.preventDefault(),clearTimeout(l),l=setTimeout(function(){a=!1},t),o())})})}s.on("click"+r,function(){a||o()})})},e.fn.destroyMfpFastClick=function(){e(this).off("touchstart"+r+" click"+r),n&&I.off("touchmove"+r+" touchend"+r)}}(),_()})(window.jQuery||window.Zepto); -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | Read more...
'; 43 | } 44 | 45 | //* Remove default avatar that ships with genesis 46 | remove_action( 'wp_head', 'genesis_load_favicon' ); 47 | 48 | //* Add custom avatar SVG before site_title 49 | add_action( 'genesis_site_title', 'add_avatar', 9 ); 50 | function add_avatar() { 51 | ?> 52 |
53 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | '; 66 | 67 | //Put anchor tag around Site Avatar 68 | $link = sprintf( '%s', trailingslashit( home_url() ), $siteAvatar ); 69 | 70 | //Echo Avatar 71 | echo $link; 72 | ?> 73 |
74 | 81 | 152 | CoreyMS · Corey Schafer'; 162 | return $creds; 163 | } 164 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* # Genesis CoreyMS Child Theme 2 | Theme Name: Genesis CoreyMS Theme 3 | Theme URI: http://coreyms.com 4 | Description: This is the CoreyMS child theme created from the Genesis Framework. 5 | Author: Corey Schafer 6 | Author URI: http://coreyms.com 7 | Template: genesis 8 | Template Version: 2.1.2 9 | Tags: black, orange, white, one-column, two-columns, three-columns, left-sidebar, right-sidebar, responsive-layout, custom-menu, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready 10 | License: GPL-2.0+ 11 | License URI: http://www.gnu.org/licenses/gpl-2.0.html 12 | */ 13 | 14 | 15 | /* # Table of Contents 16 | - HTML5 Reset 17 | - Baseline Normalize 18 | - Box Sizing 19 | - Float Clearing 20 | - Defaults 21 | - Typographical Elements 22 | - Headings 23 | - Objects 24 | - Gallery 25 | - Forms 26 | - Tables 27 | - Structure and Layout 28 | - Site Containers 29 | - Column Widths and Positions 30 | - Column Classes 31 | - Common Classes 32 | - Avatar 33 | - Genesis 34 | - Search Form 35 | - Titles 36 | - WordPress 37 | - Widgets 38 | - Featured Content 39 | - Plugins 40 | - Genesis eNews Extended 41 | - Jetpack 42 | - HighlightJS 43 | - Site Header 44 | - Title Area 45 | - Widget Area 46 | - Site Navigation 47 | - Header Navigation 48 | - Primary Navigation 49 | - Secondary Navigation 50 | - Content Area 51 | - Entries 52 | - Entry Meta 53 | - Pagination 54 | - Comments 55 | - Sidebars 56 | - Footer Widgets 57 | - Site Footer 58 | - Media Queries 59 | - Retina Display 60 | - Max-width: 1200px 61 | - Max-width: 960px 62 | - Max-width: 800px 63 | */ 64 | 65 | 66 | /* # HTML5 Reset 67 | ---------------------------------------------------------------------------------------------------- */ 68 | 69 | /* ## Baseline Normalize 70 | --------------------------------------------- */ 71 | /* normalize.css v3.0.1 | MIT License | git.io/normalize */ 72 | 73 | html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#333}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0} 74 | 75 | /* ## Box Sizing 76 | --------------------------------------------- */ 77 | 78 | *, 79 | input[type="search"] { 80 | -webkit-box-sizing: border-box; 81 | -moz-box-sizing: border-box; 82 | box-sizing: border-box; 83 | } 84 | 85 | /* ## Float Clearing 86 | --------------------------------------------- */ 87 | 88 | .author-box:before, 89 | .clearfix:before, 90 | .entry:before, 91 | .entry-content:before, 92 | .footer-widgets:before, 93 | .nav-primary:before, 94 | .nav-secondary:before, 95 | .pagination:before, 96 | .site-container:before, 97 | .site-footer:before, 98 | .site-header:before, 99 | .site-inner:before, 100 | .wrap:before { 101 | content: " "; 102 | display: table; 103 | } 104 | 105 | .author-box:after, 106 | .clearfix:after, 107 | .entry:after, 108 | .entry-content:after, 109 | .footer-widgets:after, 110 | .nav-primary:after, 111 | .nav-secondary:after, 112 | .pagination:after, 113 | .site-container:after, 114 | .site-footer:after, 115 | .site-header:after, 116 | .site-inner:after, 117 | .wrap:after { 118 | clear: both; 119 | content: " "; 120 | display: table; 121 | } 122 | 123 | 124 | /* # Defaults 125 | ---------------------------------------------------------------------------------------------------- */ 126 | 127 | /* ## Typographical Elements 128 | --------------------------------------------- */ 129 | 130 | body { 131 | background-color: #c7cdd2; 132 | color: #333; 133 | font-family: 'Lato', sans-serif; 134 | font-size: 19px; 135 | font-weight: 300; 136 | line-height: 1.625; 137 | margin: 0; 138 | } 139 | 140 | a, 141 | button, 142 | input:focus, 143 | input[type="button"], 144 | input[type="reset"], 145 | input[type="submit"], 146 | textarea:focus, 147 | .button, 148 | .gallery img { 149 | -webkit-transition: all 0.1s ease-in-out; 150 | -moz-transition: all 0.1s ease-in-out; 151 | -ms-transition: all 0.1s ease-in-out; 152 | -o-transition: all 0.1s ease-in-out; 153 | transition: all 0.1s ease-in-out; 154 | } 155 | 156 | ::-moz-selection { 157 | background-color: #333; 158 | color: #fff; 159 | } 160 | 161 | ::selection { 162 | background-color: #333; 163 | color: #fff; 164 | } 165 | 166 | a { 167 | color: #428bca; 168 | text-decoration: none; 169 | } 170 | 171 | a:hover { 172 | color: #333; 173 | } 174 | 175 | p { 176 | margin: 0 0 28px; 177 | padding: 0; 178 | } 179 | 180 | ol, 181 | ul { 182 | margin: 0; 183 | padding: 0; 184 | } 185 | 186 | li { 187 | list-style-type: none; 188 | } 189 | 190 | b, 191 | strong { 192 | font-weight: 700; 193 | } 194 | 195 | blockquote, 196 | cite, 197 | em, 198 | i { 199 | font-style: italic; 200 | } 201 | 202 | blockquote { 203 | margin: 40px; 204 | } 205 | 206 | blockquote::before { 207 | content: "\201C"; 208 | display: block; 209 | font-size: 30px; 210 | height: 0; 211 | left: -20px; 212 | position: relative; 213 | top: -10px; 214 | } 215 | 216 | 217 | /* ## Headings 218 | --------------------------------------------- */ 219 | 220 | h1, 221 | h2, 222 | h3, 223 | h4, 224 | h5, 225 | h6 { 226 | color: #333; 227 | font-family: 'Varela Round', sans-serif; 228 | font-weight: 400; 229 | line-height: 1.2; 230 | margin: 0 0 10px; 231 | } 232 | 233 | h1 { 234 | font-size: 36px; 235 | } 236 | 237 | h2 { 238 | font-size: 30px; 239 | } 240 | 241 | h3 { 242 | font-size: 24px; 243 | } 244 | 245 | h4 { 246 | font-size: 20px; 247 | } 248 | 249 | h5 { 250 | font-size: 18px; 251 | } 252 | 253 | h6 { 254 | font-size: 16px; 255 | } 256 | 257 | /* ## Objects 258 | --------------------------------------------- */ 259 | 260 | embed, 261 | iframe, 262 | img, 263 | object, 264 | video, 265 | .wp-caption { 266 | max-width: 100%; 267 | } 268 | 269 | img { 270 | height: auto; 271 | } 272 | 273 | .featured-content img, 274 | .gallery img { 275 | width: auto; 276 | } 277 | 278 | /* ## Gallery 279 | --------------------------------------------- */ 280 | 281 | .gallery { 282 | overflow: hidden; 283 | } 284 | 285 | .gallery-item { 286 | float: left; 287 | margin: 0 0 28px; 288 | text-align: center; 289 | } 290 | 291 | .gallery-columns-2 .gallery-item { 292 | width: 50%; 293 | } 294 | 295 | .gallery-columns-3 .gallery-item { 296 | width: 33%; 297 | } 298 | 299 | .gallery-columns-4 .gallery-item { 300 | width: 25%; 301 | } 302 | 303 | .gallery-columns-5 .gallery-item { 304 | width: 20%; 305 | } 306 | 307 | .gallery-columns-6 .gallery-item { 308 | width: 16.6666%; 309 | } 310 | 311 | .gallery-columns-7 .gallery-item { 312 | width: 14.2857%; 313 | } 314 | 315 | .gallery-columns-8 .gallery-item { 316 | width: 12.5%; 317 | } 318 | 319 | .gallery-columns-9 .gallery-item { 320 | width: 11.1111%; 321 | } 322 | 323 | .gallery img { 324 | border: 1px solid #ddd; 325 | height: auto; 326 | padding: 4px; 327 | } 328 | 329 | .gallery img:hover { 330 | border: 1px solid #999; 331 | } 332 | 333 | /* ## Forms 334 | --------------------------------------------- */ 335 | 336 | input, 337 | select, 338 | textarea { 339 | background-color: #fff; 340 | border: 1px solid #ddd; 341 | color: #333; 342 | font-size: 18px; 343 | font-weight: 300; 344 | padding: 16px; 345 | width: 100%; 346 | } 347 | 348 | input:focus, 349 | textarea:focus { 350 | border: 1px solid #999; 351 | outline: none; 352 | } 353 | 354 | input[type="checkbox"], 355 | input[type="image"], 356 | input[type="radio"] { 357 | width: auto; 358 | } 359 | 360 | ::-moz-placeholder { 361 | color: #333; 362 | font-weight: 300; 363 | opacity: 1; 364 | } 365 | 366 | ::-webkit-input-placeholder { 367 | color: #333; 368 | font-weight: 300; 369 | } 370 | 371 | button, 372 | input[type="button"], 373 | input[type="reset"], 374 | input[type="submit"], 375 | .button { 376 | background-color: #333; 377 | border: none; 378 | color: #fff; 379 | cursor: pointer; 380 | font-size: 16px; 381 | font-weight: 300; 382 | padding: 16px 24px; 383 | text-transform: uppercase; 384 | width: auto; 385 | } 386 | 387 | .footer-widgets button, 388 | .footer-widgets input[type="button"], 389 | .footer-widgets input[type="reset"], 390 | .footer-widgets input[type="submit"], 391 | .footer-widgets .button { 392 | background-color: #e5554e; 393 | color: #fff; 394 | } 395 | 396 | button:hover, 397 | input:hover[type="button"], 398 | input:hover[type="reset"], 399 | input:hover[type="submit"], 400 | .button:hover { 401 | background-color: #e5554e; 402 | color: #fff; 403 | } 404 | 405 | .entry-content .button:hover { 406 | color: #fff; 407 | } 408 | 409 | .footer-widgets button:hover, 410 | .footer-widgets input:hover[type="button"], 411 | .footer-widgets input:hover[type="reset"], 412 | .footer-widgets input:hover[type="submit"], 413 | .footer-widgets .button:hover { 414 | background-color: #fff; 415 | color: #333; 416 | } 417 | 418 | .button { 419 | display: inline-block; 420 | } 421 | 422 | input[type="search"]::-webkit-search-cancel-button, 423 | input[type="search"]::-webkit-search-results-button { 424 | display: none; 425 | } 426 | 427 | /* ## Tables 428 | --------------------------------------------- */ 429 | 430 | table { 431 | border-collapse: collapse; 432 | border-spacing: 0; 433 | line-height: 2; 434 | margin-bottom: 40px; 435 | width: 100%; 436 | } 437 | 438 | tbody { 439 | border-bottom: 1px solid #ddd; 440 | } 441 | 442 | td, 443 | th { 444 | text-align: left; 445 | } 446 | 447 | td { 448 | border-top: 1px solid #ddd; 449 | padding: 6px 0; 450 | } 451 | 452 | th { 453 | font-weight: 400; 454 | } 455 | 456 | 457 | /* # Structure and Layout 458 | ---------------------------------------------------------------------------------------------------- */ 459 | 460 | /* ## Site Containers 461 | --------------------------------------------- */ 462 | 463 | .site-container { 464 | word-wrap: break-word; 465 | } 466 | 467 | .site-inner, 468 | .wrap { 469 | margin: 0 auto; 470 | max-width: 1400px; 471 | } 472 | 473 | .site-inner { 474 | clear: both; 475 | padding-top: 40px; 476 | } 477 | 478 | /* ## Column Widths and Positions 479 | --------------------------------------------- */ 480 | 481 | /* ### Wrapping div for .content and .sidebar-primary */ 482 | 483 | .content-sidebar-sidebar .content-sidebar-wrap, 484 | .sidebar-content-sidebar .content-sidebar-wrap, 485 | .sidebar-sidebar-content .content-sidebar-wrap { 486 | width: 1160px; 487 | } 488 | 489 | .content-sidebar-sidebar .content-sidebar-wrap { 490 | float: left; 491 | } 492 | 493 | .sidebar-content-sidebar .content-sidebar-wrap, 494 | .sidebar-sidebar-content .content-sidebar-wrap { 495 | float: right; 496 | } 497 | 498 | /* ### Content */ 499 | 500 | .content { 501 | float: right; 502 | width: 940px; 503 | } 504 | 505 | .content-sidebar .content, 506 | .content-sidebar-sidebar .content, 507 | .sidebar-content-sidebar .content { 508 | float: left; 509 | } 510 | 511 | .content-sidebar-sidebar .content, 512 | .sidebar-content-sidebar .content, 513 | .sidebar-sidebar-content .content { 514 | width: 700px; 515 | } 516 | 517 | .full-width-content .content { 518 | width: 100%; 519 | } 520 | 521 | /* ### Primary Sidebar */ 522 | 523 | .sidebar-primary { 524 | float: right; 525 | width: 420px; 526 | } 527 | 528 | .sidebar-content .sidebar-primary, 529 | .sidebar-sidebar-content .sidebar-primary { 530 | float: left; 531 | } 532 | 533 | /* ### Secondary Sidebar */ 534 | 535 | .sidebar-secondary { 536 | float: left; 537 | width: 200px; 538 | } 539 | 540 | .content-sidebar-sidebar .sidebar-secondary { 541 | float: right; 542 | } 543 | 544 | /* ## Column Classes 545 | --------------------------------------------- */ 546 | /* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */ 547 | 548 | .five-sixths, 549 | .four-sixths, 550 | .one-fourth, 551 | .one-half, 552 | .one-sixth, 553 | .one-third, 554 | .three-fourths, 555 | .three-sixths, 556 | .two-fourths, 557 | .two-sixths, 558 | .two-thirds { 559 | float: left; 560 | margin-left: 2.564102564102564%; 561 | } 562 | 563 | .one-half, 564 | .three-sixths, 565 | .two-fourths { 566 | width: 48.717948717948715%; 567 | } 568 | 569 | .one-third, 570 | .two-sixths { 571 | width: 31.623931623931625%; 572 | } 573 | 574 | .four-sixths, 575 | .two-thirds { 576 | width: 65.81196581196582%; 577 | } 578 | 579 | .one-fourth { 580 | width: 23.076923076923077%; 581 | } 582 | 583 | .three-fourths { 584 | width: 74.35897435897436%; 585 | } 586 | 587 | .one-sixth { 588 | width: 14.52991452991453%; 589 | } 590 | 591 | .five-sixths { 592 | width: 82.90598290598291%; 593 | } 594 | 595 | .first { 596 | clear: both; 597 | margin-left: 0; 598 | } 599 | 600 | 601 | /* # Common Classes 602 | ---------------------------------------------------------------------------------------------------- */ 603 | 604 | /* ## Avatar 605 | --------------------------------------------- */ 606 | 607 | .avatar { 608 | float: left; 609 | } 610 | 611 | .alignleft .avatar, 612 | .author-box .avatar { 613 | margin-right: 24px; 614 | } 615 | 616 | .alignright .avatar { 617 | margin-left: 24px; 618 | } 619 | 620 | .comment .avatar { 621 | margin: 0 16px 24px 0; 622 | } 623 | 624 | /* ## Genesis 625 | --------------------------------------------- */ 626 | 627 | .breadcrumb { 628 | margin-bottom: 20px; 629 | } 630 | 631 | .archive-description, 632 | .author-box { 633 | background-color: #fff; 634 | font-size: 16px; 635 | margin-bottom: 40px; 636 | padding: 40px; 637 | } 638 | 639 | .author-box-title { 640 | font-size: 16px; 641 | margin-bottom: 4px; 642 | } 643 | 644 | .archive-description p:last-child, 645 | .author-box p:last-child { 646 | margin-bottom: 0; 647 | } 648 | 649 | /* ## Search Form 650 | --------------------------------------------- */ 651 | 652 | .search-form { 653 | overflow: hidden; 654 | } 655 | 656 | .site-header .search-form { 657 | float: right; 658 | margin-top: 12px; 659 | } 660 | 661 | .entry-content .search-form, 662 | .site-header .search-form { 663 | width: 50%; 664 | } 665 | 666 | .genesis-nav-menu .search input[type="submit"], 667 | .widget_search input[type="submit"] { 668 | border: 0; 669 | clip: rect(0, 0, 0, 0); 670 | height: 1px; 671 | margin: -1px; 672 | padding: 0; 673 | position: absolute; 674 | width: 1px; 675 | } 676 | 677 | /* ## Titles 678 | --------------------------------------------- */ 679 | 680 | .archive-title { 681 | font-size: 20px; 682 | } 683 | 684 | .entry-title { 685 | font-size: 40px; 686 | } 687 | 688 | .entry-title a, 689 | .sidebar .widget-title a { 690 | color: #333; 691 | } 692 | 693 | .entry-title a:hover { 694 | color: #428bca; 695 | } 696 | 697 | .widget-title { 698 | font-size: 18px; 699 | margin-bottom: 20px; 700 | } 701 | 702 | .footer-widgets .widget-title { 703 | color: #fff; 704 | } 705 | 706 | /* ## WordPress 707 | --------------------------------------------- */ 708 | 709 | a.aligncenter img { 710 | display: block; 711 | margin: 0 auto; 712 | } 713 | 714 | a.alignnone { 715 | display: inline-block; 716 | } 717 | 718 | .alignleft { 719 | float: left; 720 | text-align: left; 721 | } 722 | 723 | .alignright { 724 | float: right; 725 | text-align: right; 726 | } 727 | 728 | a.alignleft, 729 | a.alignnone, 730 | a.alignright { 731 | max-width: 100%; 732 | } 733 | 734 | img.centered, 735 | .aligncenter { 736 | display: block; 737 | margin: 0 auto 24px; 738 | } 739 | 740 | img.alignnone, 741 | .alignnone { 742 | margin-bottom: 12px; 743 | } 744 | 745 | a.alignleft, 746 | img.alignleft, 747 | .wp-caption.alignleft { 748 | margin: 0 24px 24px 0; 749 | } 750 | 751 | a.alignright, 752 | img.alignright, 753 | .wp-caption.alignright { 754 | margin: 0 0 24px 24px; 755 | } 756 | 757 | .wp-caption-text { 758 | font-size: 14px; 759 | font-weight: 700; 760 | text-align: center; 761 | } 762 | 763 | .entry-content p.wp-caption-text { 764 | margin-bottom: 0; 765 | } 766 | 767 | .sticky { 768 | } 769 | 770 | 771 | /* # Widgets 772 | ---------------------------------------------------------------------------------------------------- */ 773 | 774 | .widget { 775 | word-wrap: break-word; 776 | } 777 | 778 | .widget ol > li { 779 | list-style-position: inside; 780 | list-style-type: decimal; 781 | padding-left: 20px; 782 | text-indent: -20px; 783 | } 784 | 785 | .widget li li { 786 | border: none; 787 | margin: 0 0 0 30px; 788 | padding: 0; 789 | } 790 | 791 | .widget_calendar table { 792 | width: 100%; 793 | } 794 | 795 | .widget_calendar td, 796 | .widget_calendar th { 797 | text-align: center; 798 | } 799 | 800 | /* ## Featured Content 801 | --------------------------------------------- */ 802 | 803 | .featured-content .entry { 804 | border-bottom: 2px solid #f5f5f5; 805 | margin-bottom: 20px; 806 | padding: 0 0 24px; 807 | } 808 | 809 | .footer-widgets .entry { 810 | border-bottom: 1px dotted #666; 811 | } 812 | 813 | .featured-content .entry-title { 814 | font-size: 20px; 815 | } 816 | 817 | 818 | /* # Plugins 819 | ---------------------------------------------------------------------------------------------------- */ 820 | 821 | /* ## Genesis eNews Extended 822 | --------------------------------------------- */ 823 | 824 | .enews-widget, 825 | .enews-widget .widget-title { 826 | color: #fff; 827 | } 828 | 829 | .sidebar .widget.enews-widget { 830 | background-color: #696e73; 831 | } 832 | 833 | .enews-widget input, 834 | .enews-widget input:focus { 835 | border: 1px solid #666; 836 | } 837 | 838 | .enews-widget input { 839 | font-size: 16px; 840 | margin-bottom: 16px; 841 | } 842 | 843 | .enews-widget input[type="submit"] { 844 | background-color: #e5554e; 845 | color: #fff; 846 | margin: 0; 847 | width: 100%; 848 | } 849 | 850 | .enews-widget input:hover[type="submit"] { 851 | background-color: #fff; 852 | color: #333; 853 | } 854 | 855 | .enews form + p { 856 | margin-top: 24px; 857 | } 858 | 859 | /* ## Jetpack 860 | --------------------------------------------- */ 861 | 862 | #wpstats { 863 | display: none; 864 | } 865 | 866 | /* ## HighlightJS 867 | --------------------------------------------- */ 868 | 869 | .hljs { 870 | word-wrap: normal; 871 | } 872 | 873 | /* # Site Header 874 | ---------------------------------------------------------------------------------------------------- */ 875 | 876 | .site-header { 877 | background-color: #fff; 878 | min-height: 160px; 879 | border-top: 10px solid #72818e; 880 | } 881 | 882 | .site-header .wrap { 883 | padding: 20px 0; 884 | } 885 | 886 | /* ## Title Area 887 | --------------------------------------------- */ 888 | 889 | .title-area { 890 | float: left; 891 | width: 940px; 892 | } 893 | 894 | .header-full-width .title-area { 895 | width: 100%; 896 | } 897 | 898 | .site-avatar { 899 | float: left; 900 | margin-right: 35px; 901 | } 902 | 903 | .site-avatar, .site-avatar-svg{ 904 | width: 150px; 905 | height: 150px; 906 | } 907 | 908 | .site-avatar-svg:hover .site-avatar-background path{ 909 | fill: #444; 910 | } 911 | 912 | .site-title { 913 | font-size: 40px; 914 | font-family: 'Varela Round', sans-serif; 915 | font-weight: 400; 916 | font-variant: small-caps; 917 | line-height: 1.2; 918 | margin-top: 5px; 919 | } 920 | 921 | .site-title a { 922 | color: #3d454c; 923 | } 924 | 925 | .site-title a:hover { 926 | color: #333; 927 | } 928 | 929 | .header-image .site-title > a { 930 | float: left; 931 | min-height: 60px; 932 | width: 100%; 933 | } 934 | 935 | .site-description { 936 | font-size: 17px; 937 | font-weight: 400; 938 | line-height: 1.5; 939 | color: #999; 940 | } 941 | 942 | .site-description, 943 | .site-title { 944 | margin-bottom: 0; 945 | } 946 | 947 | .header-image .site-description, 948 | .header-image .site-title { 949 | display: block; 950 | text-indent: -9999px; 951 | } 952 | 953 | .social-links-div { 954 | margin-top: 10px; 955 | height: 40px; 956 | } 957 | 958 | .social-links-li { 959 | display: inline-block; 960 | margin-right: 4px; 961 | width: 40px; 962 | height: 40px; 963 | } 964 | 965 | .social-link { 966 | width: 40px; 967 | height: 40px; 968 | } 969 | 970 | .social-youtube .outer-shape { 971 | fill: #985454; 972 | } 973 | 974 | .social-youtube:hover .outer-shape { 975 | fill: #CD201F; 976 | } 977 | 978 | .social-github .outer-shape { 979 | fill: #666; 980 | } 981 | 982 | .social-github:hover .outer-shape { 983 | fill: #333; 984 | } 985 | 986 | .social-gplus .outer-shape { 987 | fill: #936c6b; 988 | } 989 | 990 | .social-gplus:hover .outer-shape { 991 | fill: #CC3732; 992 | } 993 | 994 | .social-twitter .outer-shape { 995 | fill: #7fa6c4; 996 | } 997 | 998 | .social-twitter:hover .outer-shape { 999 | fill: #55ACEE; 1000 | } 1001 | 1002 | .social-linkedin .outer-shape { 1003 | fill: #286a8d; 1004 | } 1005 | 1006 | .social-linkedin:hover .outer-shape { 1007 | fill: #0077B5; 1008 | } 1009 | 1010 | .social-rss .outer-shape { 1011 | fill: #cd9a66; 1012 | } 1013 | 1014 | .social-rss:hover .outer-shape { 1015 | fill: #FA9B39; 1016 | } 1017 | 1018 | /* ## Widget Area 1019 | --------------------------------------------- */ 1020 | 1021 | .site-header .widget-area { 1022 | font-family: 'Varela Round', sans-serif; 1023 | float: right; 1024 | text-align: right; 1025 | width: 420px; 1026 | margin-top: 47px; 1027 | } 1028 | 1029 | 1030 | /* # Site Navigation 1031 | ---------------------------------------------------------------------------------------------------- */ 1032 | 1033 | .genesis-nav-menu { 1034 | clear: both; 1035 | font-size: 16px; 1036 | line-height: 1; 1037 | width: 100%; 1038 | } 1039 | 1040 | .genesis-nav-menu .menu-item { 1041 | display: inline-block; 1042 | text-align: left; 1043 | } 1044 | 1045 | .genesis-nav-menu a { 1046 | color: #333; 1047 | display: block; 1048 | padding: 15px 24px; 1049 | } 1050 | 1051 | .genesis-nav-menu a:hover, 1052 | .genesis-nav-menu .current-menu-item > a, 1053 | .genesis-nav-menu .sub-menu .current-menu-item > a:hover { 1054 | color: #e5554e; 1055 | } 1056 | 1057 | .genesis-nav-menu .sub-menu { 1058 | left: -9999px; 1059 | opacity: 0; 1060 | position: absolute; 1061 | -webkit-transition: opacity .4s ease-in-out; 1062 | -moz-transition: opacity .4s ease-in-out; 1063 | -ms-transition: opacity .4s ease-in-out; 1064 | -o-transition: opacity .4s ease-in-out; 1065 | transition: opacity .4s ease-in-out; 1066 | width: 200px; 1067 | z-index: 99; 1068 | } 1069 | 1070 | .genesis-nav-menu .sub-menu a { 1071 | background-color: #fff; 1072 | border: 1px solid #eee; 1073 | border-top: none; 1074 | font-size: 14px; 1075 | padding: 20px; 1076 | position: relative; 1077 | width: 200px; 1078 | } 1079 | 1080 | .genesis-nav-menu .sub-menu .sub-menu { 1081 | margin: -55px 0 0 199px; 1082 | } 1083 | 1084 | .genesis-nav-menu .menu-item:hover { 1085 | position: static; 1086 | } 1087 | 1088 | .genesis-nav-menu .menu-item:hover > .sub-menu { 1089 | left: auto; 1090 | opacity: 1; 1091 | } 1092 | 1093 | .genesis-nav-menu > .first > a { 1094 | padding-left: 0; 1095 | } 1096 | 1097 | .genesis-nav-menu > .last > a { 1098 | padding-right: 0; 1099 | } 1100 | 1101 | .genesis-nav-menu > .right { 1102 | color: #fff; 1103 | float: right; 1104 | list-style-type: none; 1105 | } 1106 | 1107 | .genesis-nav-menu > .rss > a { 1108 | margin-left: 48px; 1109 | } 1110 | 1111 | .genesis-nav-menu > .search { 1112 | padding: 10px 0 0; 1113 | } 1114 | 1115 | /* ## Site Header Navigation 1116 | --------------------------------------------- */ 1117 | 1118 | .site-header .sub-menu { 1119 | border-top: 1px solid #eee; 1120 | } 1121 | 1122 | .site-header .sub-menu .sub-menu { 1123 | margin-top: -56px; 1124 | } 1125 | 1126 | .site-header .genesis-nav-menu li li { 1127 | margin-left: 0; 1128 | } 1129 | 1130 | /* ## Primary Navigation 1131 | --------------------------------------------- */ 1132 | 1133 | .nav-primary { 1134 | background-color: #56616B; 1135 | } 1136 | 1137 | .nav-primary .genesis-nav-menu a { 1138 | color: #fff; 1139 | } 1140 | 1141 | .nav-primary .genesis-nav-menu .sub-menu a { 1142 | color: #333; 1143 | } 1144 | 1145 | .nav-primary .genesis-nav-menu a:hover, 1146 | .nav-primary .genesis-nav-menu .current-menu-item > a, 1147 | .nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a:hover { 1148 | color: #E5A5A2; 1149 | } 1150 | 1151 | /* ## Secondary Navigation 1152 | --------------------------------------------- */ 1153 | 1154 | .nav-secondary { 1155 | background-color: #fff; 1156 | } 1157 | 1158 | 1159 | /* # Content Area 1160 | ---------------------------------------------------------------------------------------------------- */ 1161 | 1162 | /* ## Entries 1163 | --------------------------------------------- */ 1164 | 1165 | .entry { 1166 | margin-bottom: 40px; 1167 | padding: 50px 60px; 1168 | border-radius: 3px; 1169 | } 1170 | 1171 | .content .entry { 1172 | background-color: #fff; 1173 | border-top: 10px solid #E3E0DD; 1174 | } 1175 | 1176 | .entry-content ol, 1177 | .entry-content ul { 1178 | margin-bottom: 28px; 1179 | margin-left: 40px; 1180 | } 1181 | 1182 | .entry-content ol > li { 1183 | list-style-type: decimal; 1184 | } 1185 | 1186 | .entry-content ul > li { 1187 | list-style-type: disc; 1188 | } 1189 | 1190 | .entry-content ol ol, 1191 | .entry-content ul ul { 1192 | margin-bottom: 0; 1193 | } 1194 | 1195 | .entry-content code { 1196 | background-color: #333; 1197 | color: #ddd; 1198 | } 1199 | 1200 | .more-div { 1201 | margin-bottom: 20px; 1202 | } 1203 | 1204 | .more-link { 1205 | padding: 10px 14px; 1206 | background: #E57D78; 1207 | color: #FFF; 1208 | border-radius: 5px; 1209 | } 1210 | 1211 | .more-link:hover { 1212 | color: #FFF; 1213 | background: #e5554e; 1214 | } 1215 | 1216 | .reqList { 1217 | background: #FAF4EC; 1218 | padding: 40px; 1219 | border-top: 1px solid #CCC; 1220 | border-bottom: 1px solid #CCC; 1221 | margin-bottom: 40px; 1222 | } 1223 | 1224 | /* ## Entry Meta 1225 | --------------------------------------------- */ 1226 | 1227 | p.entry-meta { 1228 | font-size: 16px; 1229 | margin-bottom: 0; 1230 | } 1231 | 1232 | .entry-header .entry-meta { 1233 | margin-bottom: 24px; 1234 | } 1235 | 1236 | .entry-footer .entry-meta { 1237 | border-top: 2px solid #f5f5f5; 1238 | padding-top: 24px; 1239 | } 1240 | 1241 | .entry-categories, 1242 | .entry-tags { 1243 | display: block; 1244 | } 1245 | 1246 | .entry-comments-link::before { 1247 | content: "\2014"; 1248 | margin: 0 6px 0 2px; 1249 | } 1250 | 1251 | /* ## Pagination 1252 | --------------------------------------------- */ 1253 | 1254 | .pagination { 1255 | clear: both; 1256 | margin: 40px 0; 1257 | } 1258 | 1259 | .adjacent-entry-pagination { 1260 | margin-bottom: 0; 1261 | } 1262 | 1263 | .archive-pagination li { 1264 | display: inline; 1265 | } 1266 | 1267 | .archive-pagination li a { 1268 | background-color: #333; 1269 | color: #fff; 1270 | cursor: pointer; 1271 | display: inline-block; 1272 | font-size: 16px; 1273 | padding: 8px 12px; 1274 | } 1275 | 1276 | .archive-pagination li a:hover, 1277 | .archive-pagination .active a { 1278 | background-color: #e5554e; 1279 | } 1280 | 1281 | /* ## Comments 1282 | --------------------------------------------- */ 1283 | 1284 | .comment-respond, 1285 | .entry-comments, 1286 | .entry-pings { 1287 | background-color: #fff; 1288 | margin-bottom: 40px; 1289 | } 1290 | 1291 | .comment-respond, 1292 | .entry-pings { 1293 | padding: 40px 40px 16px; 1294 | } 1295 | 1296 | .entry-comments { 1297 | padding: 40px; 1298 | } 1299 | 1300 | .comment-header { 1301 | font-size: 16px; 1302 | } 1303 | 1304 | li.comment { 1305 | background-color: #f5f5f5; 1306 | border: 2px solid #fff; 1307 | border-right: none; 1308 | } 1309 | 1310 | .comment-content { 1311 | clear: both; 1312 | } 1313 | 1314 | .comment-list li { 1315 | margin-top: 24px; 1316 | padding: 32px; 1317 | } 1318 | 1319 | .comment-list li li { 1320 | margin-right: -32px; 1321 | } 1322 | 1323 | .comment-respond input[type="email"], 1324 | .comment-respond input[type="text"], 1325 | .comment-respond input[type="url"] { 1326 | width: 50%; 1327 | } 1328 | 1329 | .comment-respond label { 1330 | display: block; 1331 | margin-right: 12px; 1332 | } 1333 | 1334 | .entry-comments .comment-author { 1335 | margin-bottom: 0; 1336 | } 1337 | 1338 | .entry-pings .reply { 1339 | display: none; 1340 | } 1341 | 1342 | .bypostauthor { 1343 | } 1344 | 1345 | .form-allowed-tags { 1346 | background-color: #f5f5f5; 1347 | font-size: 16px; 1348 | padding: 24px; 1349 | } 1350 | 1351 | 1352 | /* # Sidebars 1353 | ---------------------------------------------------------------------------------------------------- */ 1354 | 1355 | .sidebar { 1356 | font-size: 16px; 1357 | } 1358 | 1359 | .sidebar li { 1360 | border-bottom: 1px dotted #ddd; 1361 | margin-bottom: 10px; 1362 | padding-bottom: 10px; 1363 | } 1364 | 1365 | .sidebar p:last-child, 1366 | .sidebar ul > li:last-child { 1367 | margin-bottom: 0; 1368 | } 1369 | 1370 | .sidebar .widget { 1371 | background-color: #fff; 1372 | margin-bottom: 40px; 1373 | padding: 40px; 1374 | border-top: 10px solid #E5A5A2; 1375 | border-radius: 3px; 1376 | } 1377 | 1378 | 1379 | /* # Footer Widgets 1380 | ---------------------------------------------------------------------------------------------------- */ 1381 | 1382 | .footer-widgets { 1383 | background-color: #333; 1384 | clear: both; 1385 | padding-top: 40px; 1386 | } 1387 | 1388 | .footer-widgets, 1389 | .footer-widgets a { 1390 | color: #999; 1391 | } 1392 | 1393 | .footer-widgets input { 1394 | border: 1px solid #333; 1395 | } 1396 | 1397 | .footer-widgets a.button, 1398 | .footer-widgets a:hover { 1399 | color: #fff; 1400 | } 1401 | 1402 | .footer-widgets li { 1403 | border-bottom: 1px dotted #666; 1404 | margin-bottom: 10px; 1405 | padding-bottom: 10px; 1406 | } 1407 | 1408 | .footer-widgets .widget { 1409 | margin-bottom: 40px; 1410 | } 1411 | 1412 | .footer-widgets p:last-child { 1413 | margin-bottom: 0; 1414 | } 1415 | 1416 | .footer-widgets-1, 1417 | .footer-widgets-2, 1418 | .footer-widgets-3 { 1419 | width: 420px; 1420 | } 1421 | 1422 | .footer-widgets-1 { 1423 | margin-right: 70px; 1424 | } 1425 | 1426 | .footer-widgets-1, 1427 | .footer-widgets-2 { 1428 | float: left; 1429 | } 1430 | 1431 | .footer-widgets-3 { 1432 | float: right; 1433 | } 1434 | 1435 | 1436 | /* # Site Footer 1437 | ---------------------------------------------------------------------------------------------------- */ 1438 | 1439 | .site-footer { 1440 | background-color: #fff; 1441 | font-size: 16px; 1442 | line-height: 1; 1443 | padding: 40px 0; 1444 | text-align: center; 1445 | } 1446 | 1447 | .site-footer p { 1448 | margin-bottom: 0; 1449 | } 1450 | 1451 | 1452 | /* # Media Queries 1453 | ---------------------------------------------------------------------------------------------------- */ 1454 | 1455 | @media only screen and (max-width: 1800px) { 1456 | 1457 | .site-inner, 1458 | .wrap { 1459 | max-width: 1200px; 1460 | } 1461 | 1462 | .content-sidebar-sidebar .content-sidebar-wrap, 1463 | .sidebar-content-sidebar .content-sidebar-wrap, 1464 | .sidebar-sidebar-content .content-sidebar-wrap { 1465 | width: 980px; 1466 | } 1467 | 1468 | .content, 1469 | .title-area { 1470 | width: 800px; 1471 | } 1472 | 1473 | .sidebar-secondary { 1474 | width: 180px; 1475 | } 1476 | 1477 | .sidebar-content-sidebar .content, 1478 | .sidebar-sidebar-content .content, 1479 | .content-sidebar-sidebar .content { 1480 | width: 580px; 1481 | } 1482 | 1483 | .sidebar-primary, 1484 | .site-header .widget-area { 1485 | width: 360px; 1486 | } 1487 | 1488 | .footer-widgets-1, 1489 | .footer-widgets-2, 1490 | .footer-widgets-3 { 1491 | width: 360px; 1492 | } 1493 | 1494 | .footer-widgets-1 { 1495 | margin-right: 60px; 1496 | } 1497 | 1498 | } 1499 | 1500 | @media only screen and (max-width: 1200px) { 1501 | 1502 | .site-inner, 1503 | .wrap { 1504 | max-width: 960px; 1505 | } 1506 | 1507 | .content-sidebar-sidebar .content-sidebar-wrap, 1508 | .sidebar-content-sidebar .content-sidebar-wrap, 1509 | .sidebar-sidebar-content .content-sidebar-wrap { 1510 | width: 740px; 1511 | } 1512 | 1513 | .content, 1514 | .title-area { 1515 | width: 620px; 1516 | } 1517 | 1518 | .sidebar-content-sidebar .content, 1519 | .sidebar-sidebar-content .content, 1520 | .content-sidebar-sidebar .content { 1521 | width: 400px; 1522 | } 1523 | 1524 | .footer-widgets-1, 1525 | .footer-widgets-2, 1526 | .footer-widgets-3, 1527 | .sidebar-primary, 1528 | .site-header .widget-area { 1529 | width: 300px; 1530 | } 1531 | 1532 | .footer-widgets-1 { 1533 | margin-right: 30px; 1534 | } 1535 | 1536 | } 1537 | 1538 | @media only screen and (max-width: 960px) { 1539 | 1540 | .site-inner, 1541 | .wrap { 1542 | max-width: 800px; 1543 | } 1544 | 1545 | .content, 1546 | .content-sidebar-sidebar .content, 1547 | .content-sidebar-sidebar .content-sidebar-wrap, 1548 | .footer-widgets-1, 1549 | .footer-widgets-2, 1550 | .footer-widgets-3, 1551 | .sidebar-content-sidebar .content, 1552 | .sidebar-content-sidebar .content-sidebar-wrap, 1553 | .sidebar-primary, 1554 | .sidebar-secondary, 1555 | .sidebar-sidebar-content .content, 1556 | .sidebar-sidebar-content .content-sidebar-wrap, 1557 | .site-header .widget-area, 1558 | .title-area { 1559 | width: 100%; 1560 | } 1561 | 1562 | .site-avatar { 1563 | float: none; 1564 | margin-right: 0; 1565 | width: 100%; 1566 | height: 150px; 1567 | } 1568 | 1569 | .site-header .wrap { 1570 | padding: 20px 5%; 1571 | } 1572 | 1573 | .site-header .widget-area { 1574 | margin-top: 20px; 1575 | } 1576 | 1577 | .header-image .title-area { 1578 | background-position: center top; 1579 | } 1580 | 1581 | .genesis-nav-menu li, 1582 | .site-header ul.genesis-nav-menu, 1583 | .site-header .search-form { 1584 | float: none; 1585 | } 1586 | 1587 | .genesis-nav-menu, 1588 | .site-description, 1589 | .site-header .title-area, 1590 | .site-header .search-form, 1591 | .site-title { 1592 | text-align: center; 1593 | } 1594 | 1595 | .genesis-nav-menu a, 1596 | .genesis-nav-menu > .first > a, 1597 | .genesis-nav-menu > .last > a { 1598 | padding: 20px 16px; 1599 | } 1600 | 1601 | .site-header .search-form { 1602 | margin: 16px auto; 1603 | } 1604 | 1605 | .genesis-nav-menu li.right { 1606 | display: none; 1607 | } 1608 | 1609 | .footer-widgets-1 { 1610 | margin-right: 0; 1611 | } 1612 | 1613 | } 1614 | 1615 | @media only screen and (max-width: 800px) { 1616 | 1617 | body { 1618 | background-color: #fff; 1619 | font-size: 16px; 1620 | } 1621 | 1622 | .entry-title { 1623 | font-size: 30px; 1624 | } 1625 | 1626 | .site-inner, 1627 | .wrap { 1628 | padding-left: 5%; 1629 | padding-right: 5%; 1630 | } 1631 | 1632 | .archive-description, 1633 | .author-box, 1634 | .comment-respond, 1635 | .entry, 1636 | .entry-comments, 1637 | .entry-pings, 1638 | .sidebar .widget, 1639 | .site-header { 1640 | padding: 0; 1641 | } 1642 | 1643 | .entry, 1644 | .sidebar .widget { 1645 | padding-top: 15px; 1646 | } 1647 | 1648 | .archive-pagination li a { 1649 | margin-bottom: 4px; 1650 | } 1651 | 1652 | .five-sixths, 1653 | .four-sixths, 1654 | .one-fourth, 1655 | .one-half, 1656 | .one-sixth, 1657 | .one-third, 1658 | .three-fourths, 1659 | .three-sixths, 1660 | .two-fourths, 1661 | .two-sixths, 1662 | .two-thirds { 1663 | margin: 0; 1664 | width: 100%; 1665 | } 1666 | 1667 | .sidebar .widget.enews-widget { 1668 | padding: 40px; 1669 | } 1670 | 1671 | } 1672 | 1673 | /* Print Stylesheet*/ 1674 | @media print { 1675 | * { 1676 | background: transparent !important; 1677 | color: #000 !important; 1678 | box-shadow: none !important; 1679 | text-shadow: none !important; 1680 | } 1681 | 1682 | .nav-primary, 1683 | .header-widget-area, 1684 | .sidebar, 1685 | .footer-widgets, 1686 | .site-footer, 1687 | .sharedaddy, 1688 | .jp-relatedposts, 1689 | .comment-respond, 1690 | #disqus_thread, 1691 | .social-links-div{ 1692 | display: none; 1693 | } 1694 | 1695 | .title-area { 1696 | width: 450px; 1697 | float: none; 1698 | margin: 0 auto; 1699 | } 1700 | 1701 | .site-inner { 1702 | padding-top: 0; 1703 | } 1704 | 1705 | a:not([href^="http://coreyms"])::after { 1706 | content: " ( " attr(href) " )"; 1707 | } 1708 | 1709 | @page { 1710 | margin: .5cm; 1711 | } 1712 | 1713 | h2, ul { 1714 | page-break-after: avoid; 1715 | } 1716 | 1717 | p, ul { 1718 | orphans: 3; 1719 | widows: 3; 1720 | pt: 14pt; 1721 | } 1722 | 1723 | .aligncenter{ 1724 | text-align: center; 1725 | } 1726 | img { 1727 | width: auto; 1728 | max-height: 500px; 1729 | } 1730 | } --------------------------------------------------------------------------------