This file contains hidden or 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
| .ui-slider .ui-btn-inner { | |
| padding: 4px 0 0 0 !important; | |
| } | |
| .ui-slider-popup { | |
| position: absolute !important; | |
| width: 64px; | |
| height: 64px; | |
| text-align: center; | |
| font-size: 36px; |
This file contains hidden or 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
| (function( $, undefined ) { | |
| $.widget( "mobile.slider", $.mobile.slider, { | |
| options: { | |
| popupEnabled: false, | |
| showValue: false | |
| }, | |
| _create: function() { | |
| var o = this.options, |
This file contains hidden or 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
| <a href="http://www.website.com/" rel="nofollow" target="_blank">Link Name</a> |
This file contains hidden or 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
| #ribbon-back { | |
| border-color: transparent #660000 #660000 transparent; /* Triangle is created using two transparent sides for the border */ | |
| border-width: 16px; border-style: solid; /* Width is from the middle of the triangle */ | |
| width: 0; /* Important that the Div has no width */ | |
| height: 0; /* Important that the Div has no height */ | |
| position: relative; | |
| left: 704px; | |
| top: -16px; | |
| z-index: -1; /* Used for depth placement */ | |
| } |
This file contains hidden or 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
| .emerland { | |
| background-color: #2ECC71; | |
| -webkit-transition: background-color 500ms linear; | |
| -moz-transition: background-color 500ms linear; | |
| -o-transition: background-color 500ms linear; | |
| -ms-transition: background-color 500ms linear; | |
| transition: background-color 500ms linear; | |
| } |
This file contains hidden or 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
| <meta property="og:title" content="Title Goes Here" /> | |
| <meta property="og:type" content="website" /> | |
| <meta property="og:image" content="http://josephmainwaring.com/images/jm-avatar.png"/> | |
| <meta property="og:url" content="http://josephmainwaring.com" /> | |
| <meta property="og:description" content="A short description to supply Open Graph" /> | |
| <meta property="fb:admins" content='42' /> |
This file contains hidden or 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
| body { | |
| background: #290e2a; | |
| background: rgb(33, 7, 34) -moz-radial-gradient(center top, circle farthest-side, rgb(130, 77, 132) 0%, rgb(33, 7, 34) 100%) no-repeat; | |
| background: -webkit-gradient(radial, 50% 0%, 0, 50% 0%, 1000, from(rgb(64, 38, 65)), to(rgb(33, 7, 34))); | |
| } | |
| #container { | |
| min-height: 100%; | |
| background: url(purple/stripe-thick.png) scroll repeat; | |
| background: url(purple/stripe-thin.png), url(purple/stripe-thick.png) scroll repeat; | |
This file contains hidden or 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
| $(window).load(function () { | |
| $('a[target=_blank]').each(function(){ | |
| $(this).attr('onClick', "recordOutboundLink(this, 'Outbound Links', '"+$(this).attr('data-name')+"');return true;"); | |
| }); | |
| }); |
This file contains hidden or 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
| /* Background Image Property for Normal Screens */ | |
| .ui-icon-menu { | |
| background: url('../img/icon-menu.png') center center no-repeat; | |
| } | |
| /* Background Image Property for Retina Screens */ | |
| @media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) { | |
| /* Best Practice: Indent Rulesets within Media Queries */ | |
| .ui-icon-menu { |