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
#!/bin/sh | |
defaults delete com.apple.finder AppleShowAllFiles | |
killall Finder |
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
<!--[if lte IE8]> | |
<script type="text/javascript" src="/jquery/1.11.1/jquery.min.js"></script> | |
<![endif]--> | |
<!--[if gte IE 9]><!--> | |
<script type="text/javascript" src="/jquery/2.1.1/jquery.min.js"></script> | |
<!--<![endif]--> |
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
<p id="blog" data-author="Taro" data-create-date="2013-04-10">2013-04-10</p> |
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
/* */ | |
/* | |
------------------------------------------------ */ | |
/* ----------------------------------------------------- | |
------------------------------------------------------- */ |
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
.short { | |
/* margin padding border */ | |
/* 上 右 下 左 */ | |
margin: 10px 5px 3px 2px; | |
/* 上 左右 下 */ | |
margin: 10px 5px 2px; | |
/* 上下 左右 */ | |
margin: 10px 5px; | |
/* まとめて */ | |
margin: 10px; |
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
.ff { | |
font-family: "Helvetica Neue", "游ゴシック Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif; | |
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif; | |
} |
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
.transform { | |
/* 原点 */ | |
transform-origin: 50% 50% 0 | left top | 10% 20% 30%; | |
tranform: rotate(45deg); | |
transform: scale(2); | |
transform: skew(45deg); | |
transform: translate(10px, 10px); | |
} | |
.transition { | |
/* property duration timing-function delay */ |
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
.tap{ | |
-webkit-tap-highlight-color: rgba(0, 0, 0, 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
.form { | |
appearance:none; | |
} |
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="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> |