Skip to content

Instantly share code, notes, and snippets.

View PhatDang's full-sized avatar
🎯
Focusing

PHAT DANG MINH PhatDang

🎯
Focusing
View GitHub Profile
@PhatDang
PhatDang / index.html
Created December 20, 2017 09:42
Wandering Ribbon
<div id="controls">
</div>
@PhatDang
PhatDang / iOS Media Queries.css
Last active August 29, 2015 14:26
iOS Media Queries for iPhone/iPod vs iPad & Retina vs Non-Retina Devices
.ipad-only, .iphone-only, .retina-only, .non-retina-only, .retina-iphone-only, .non-retina-iphone-only { display: none; }
/* ---------- iPad Only ---------- */
@media only screen and (device-width: 768px) {
.ipad-only { display: block; }
}
/* ---------- iPhone/iPod Only ---------- */
@media only screen and (device-width: 320px) {
.iphone-only { display: block; }