Created
January 28, 2015 14:18
-
-
Save Yoshyn/5e5debe49d0f710cbac2 to your computer and use it in GitHub Desktop.
Stylish CSS for production domain.
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("my-domain.com") { | |
body { | |
border-top: 2px solid orange; | |
} | |
body:before { | |
background-color: orange; | |
content: "PROD"; | |
left: -1px; | |
padding: 1px; | |
position: absolute; | |
top: -2px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment