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
javascript:(function (){var url = location.href,result = url.match(/&post=(.*)&/),protocol = location.protocol+'//',host = location.host+'/';location.href = protocol + host + 'wp-admin/post.php?post=' + result[1] + '&action=edit'})() |
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
/** | |
* Simple Report Script | |
*/ | |
/** | |
* Date Settings | |
*/ | |
var date = new Date(), |
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
@mixin media-smp { | |
// スマートフォンのみ | |
@media only screen and (max-width: $smp) { | |
@content; | |
} | |
} |
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
$.fn.extend | |
tabs: (options) -> | |
# Default settings | |
settings = | |
duration: 500 | |
# Merge default settings with options. | |
settings = $.extend settings, options |
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
$.fn.extend | |
multiMap: (options) -> | |
if !$(@).length > 0 | |
return | |
$self = $(@) | |
settings = { | |
callback: ()-> |
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
$.fn.extend | |
moveLink: (options) -> | |
# Default settings | |
if !$(this).length > 0 | |
return | |
settings = { | |
fixedNav:"" | |
} | |
arr = [] | |
$navHeight = 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
overflow: scroll; | |
-webkit-overflow-scrolling : touch; |
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
list = { | |
blog: { | |
width: 89px | |
height: 44px | |
}, | |
archive: { | |
width: 210px | |
height: 44px | |
}, | |
about: { |
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
$map: ( | |
key1: 10px, | |
key2: 20px, | |
key3: ( | |
nested-key1: red, | |
nested-key2: blue, | |
), | |
); | |
.map { |
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
$main-title: ( | |
blog: | |
( | |
width:188px, | |
background-image:url(../images/blog/main-title.png) | |
), | |
archive: | |
( | |
width:162px, | |
background-image:url(../images/archive/main-title.png) |