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
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| $(window).scroll(function(){ | |
| if ($(this).scrollTop() > 100) { | |
| $('.scrollup').fadeIn(); | |
| } else { | |
| $('.scrollup').fadeOut(); | |
| } | |
| }); |
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
| .wrapper{ | |
| width: 550px; | |
| text-align: justify; | |
| background: firebrick; | |
| font-size: 0; | |
| font-size: 12px\9; /* IE6-9 only hack */ | |
| } | |
| .wrapper div{ | |
| background: white; |
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
| .box-shadow { | |
| -moz-box-shadow: 2px 2px 3px #969696; /* for Firefox 3.5+ */ | |
| -webkit-box-shadow: 2px 2px 3px #969696; /* for Safari and Chrome */ | |
| box-shadow: 2px 2px 3px #969696; /* W3C */ | |
| filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=3); | |
| } |
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
| .logo a { | |
| display: block; | |
| width: 52px; | |
| height: 52px; | |
| background: url(../img/logo.jpg) 0 0 no-repeat; | |
| text-indent: 100%; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| } |
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
| ::-webkit-input-placeholder { | |
| color: red; | |
| } | |
| :-moz-placeholder { /* Firefox 18- */ | |
| color: red; | |
| } | |
| ::-moz-placeholder { /* Firefox 19+ */ | |
| color: red; |
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
| // ---- | |
| // Sass (v3.4.7) | |
| // Compass (v1.0.1) | |
| // ---- | |
| // Converting Photoshop Letter Spacing to CSS | |
| @function getLetterSpacing($num) { | |
| @return ($num / 1000) + em; | |
| } |
OlderNewer