May 2012
17 posts
Old skool
Go this Google Translate page: http://goo.gl/kCjIp
Make sure your speaker volume is up.
Click the little volume button in the left box.
Enjoy!
April 2012
29 posts
1 tag
Remove Webkit Search Input Styles
input[type=search] {
-webkit-appearance: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
display: none;
}
Style Placeholder text on inputs
::-webkit-input-placeholder {
color: #999;
}
:-moz-placeholder {
color: #999;
}
http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css
box-sizing: border-box
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
http://paulirish.com/2012/box-sizing-border-box-ftw/
March 2012
10 posts