Skip to content

Instantly share code, notes, and snippets.

View r-abe01's full-sized avatar

Ryohei Abe r-abe01

  • Tokyo, Japan
View GitHub Profile
@r-abe01
r-abe01 / CSS
Created February 15, 2016 14:27
Media Queries(メディアクエリ)とJavaScriptの連携について ref: http://qiita.com/r_abe01/items/a3a2e94b5162d949037b
/* PC用 */
.media-queries {
display: none;
font-family: 'pc';
}
/* TAB用 */
@media screen and (max-width: 768px) {
.media-queries {
font-family: 'tab';