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
if (document.createElement("input").webkitSpeech === undefined) { | |
alert("Speech input is not supported in your browser."); | |
} |
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
<meta content="html.renderer=webgl" name="gwt:property"> |
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
img { | |
max-width: 100%; | |
height: auto; | |
width: auto\9; /* ie8 */ | |
} | |
@media screen and (min-width:1200px){ | |
img { | |
max-width:1000px; | |
} |
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
div { | |
border: 3px solid orange; | |
-moz-border-top-colors: red yellow blue; | |
-moz-border-bottom-colors: red yellow blue; | |
} | |
/* ref: https://developer.mozilla.org/en/CSS/-moz-border-top-colors */ |
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
#foo { | |
-webkit-user-select: red; | |
-moz-user-select: red | |
} |
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
#example { | |
text-align: -moz-center; | |
text-align: -webkit-center; | |
} |
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
/* preserve-3d allows objects to live in a shared 3D space */ | |
#example { | |
-webkit-transform-style: preserve-3d; | |
} | |
/* flat is just a painting effect and not effected by the containers perspective */ | |
#example:hover { | |
-webkit-transform-style: flat; | |
} |
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
html { | |
-webkit-text-size-adjust: none; | |
} |
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
#foo { | |
-webkit-transform: translateZ(0); | |
} |
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
/* ref http://maxvoltar.com/archive/-webkit-font-smoothing */ | |
-webkit-font-smoothing: none; | |
-webkit-font-smoothing: subpixel-antialiased; /* best for small sizes */ | |
-webkit-font-smoothing: antialiased; /* best for headings and other larger type */ |