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
// Fastmail app icon: http://than.to/1iMcu | |
setInterval(updateDockBadge, 3000); | |
function updateDockBadge() { | |
var count = document.getElementsByClassName('v-FolderSource-badge')[0].textContent; | |
if ( count === '0' ) { | |
window.fluid.dockBadge = ''; | |
} else { | |
window.fluid.dockBadge = count; | |
} |
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
@import "compass/css3"; | |
@function makelongshadow($color) { | |
$val: 0px 0px $color; | |
@for $i from 1 through 300 { | |
$val: #{$val}, #{$i}px #{$i}px #{$color}; | |
} | |
@return $val; | |
} |
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
@import "compass/css3"; | |
@function makelongshadow($color) { | |
$val: 0px 0px $color; | |
@for $i from 1 through 300 { | |
$val: #{$val}, #{$i}px #{$i}px #{$color}; | |
} | |
@return $val; | |
} |
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
.gh-footer-signup { | |
color:white; | |
padding: 40px 0; | |
background: black; | |
position: absolute; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
.gh-form { | |
background-color: #dddddd; |
OlderNewer