This file contains 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
#leftColContainer, #MessagingNetegoWrapper, .uiHeaderActions, #pageHead .rfloat, #pageHead .lfloat, #pageFooter, .fbDockWrapper, #blueBarHolder { display: none !important; } #pageHead { padding-left: 20px !important; } html#facebook #contentCol { margin-left: 0 !important } .MessagingReadViewMainContentt, .fbx #globalContainer, #MessagingFrame, #MessagingMainContent { width: 100% !important; } | |
#contentArea { width: 100% !important; } | |
.MessagingReadHeader { | |
top:15px; | |
left:20px; | |
} | |
.MessagingContentHeaderWrapper, | |
#MessagingShelfContent { |
This file contains 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
.pop { | |
display: block; | |
-webkit-animation-name: pop; | |
-webkit-animation-duration: .6s; | |
-webkit-animation-iteration-count: 1; | |
-webkit-animation-timing-function: ease-in-out; | |
} | |
@-webkit-keyframes pop { | |
from { |
This file contains 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
// Stick all your icons in a subfolder in your images folder. Put retina versions in a subfolder of that called "@2x". | |
$sprites: sprite-map("NAME_OF_SUBFOLDER/*.png"); | |
$sprites2x: sprite-map("NAME_OF_SUBFOLDER/@2x/*.png"); | |
// stolen from 37signals | |
@mixin retina-media() { | |
@media (min--moz-device-pixel-ratio: 1.3), | |
(-webkit-min-device-pixel-ratio: 1.3), | |
(min-device-pixel-ratio: 1.3), | |
(min-resolution: 1.3dppx) { |