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
// Brand Colors | |
$brand-adobe: #ff0000; | |
$brand-amazon: #e47911; | |
$brand-android: #a4c639; | |
$brand-behance: #005cff; | |
$brand-bitly: #ee6123; | |
$brand-disqus-blue: #59a3fc; | |
$brand-disqus-orange: #db7132; | |
$brand-dribble: #ea4c89; | |
$brand-dropbox: #3d9ae8; |
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 name="twitter:card" content="summary"> | |
<meta name="twitter:site" content=""> <!-- Twitter username --> | |
<meta name="twitter:creator" content=""> <!-- Twitter username --> | |
<meta name="twitter:title" content=""> <!-- Limit to 70 characters or less --> | |
<meta name="twitter:description" content=""> <!-- Limit to ≤ 200 characters; don't re-use the title or generic text --> | |
<meta name="twitter:image" content=""> <!-- Optional; min. 60x60 pixels; > 120x120 will be resized; file size < 1MB --> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<browserconfig> | |
<msapplication> | |
<tile> | |
<square70x70logo src="images/smalltile.png" /> | |
<square150x150logo src="images/mediumtile.png" /> | |
<wide310x150logo src="images/widetile.png" /> | |
<square310x310logo src="images/largetile.png" /> | |
<TileColor>#009900</TileColor> | |
</tile> |
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 name="msapplication-TileImage" content="144x144.png"> <!-- Image must be 144x144 pixels --> | |
<meta name="msapplication-TileColor" content="#ff0000"> <!-- Color can be in Hex or CSS rgb format --> |
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 name="application-name" content=" Contoso" /> | |
<meta name="msapplication-TileColor" content=" #009900" /> | |
<meta name="msapplication-square70x70logo" content="images/smalltile.png" /> | |
<meta name="msapplication-square150x150logo" content="images/mediumtile.png" /> | |
<meta name="msapplication-wide310x150logo" content="images/widetile.png" /> | |
<meta name="msapplication-square310x310logo" content="images/largetile.png" /> |
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
ErrorDocument 400 /400.html | |
ErrorDocument 401 /401.html | |
ErrorDocument 403 /403.html | |
ErrorDocument 404 /404.html | |
ErrorDocument 405 /405.html | |
ErrorDocument 408 /408.html | |
ErrorDocument 414 /414.html | |
ErrorDocument 500 /500.html | |
ErrorDocument 502 /502.html | |
ErrorDocument 504 /504.html |
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
# BEGIN GZIP | |
<ifmodule mod_deflate.c> | |
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript | |
</ifmodule> | |
# END GZIP |
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
input[type=number]::-webkit-inner-spin-button, | |
input[type=number]::-webkit-outer-spin-button { | |
-webkit-appearance: none; | |
margin: 0; | |
} |
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: #ccc; | |
} | |
/* Firefox 18- */ | |
:-moz-placeholder { | |
color: #ccc; | |
} | |
/* Firefox 19+ */ |
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 { | |
-webkit-tap-highlight-color: rgba(0,0,0,0); | |
} |