View `getMany` get reduced rows from tables using timezone primary key
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
**Issue type:** | |
[ ] question | |
[x] bug report | |
[ ] feature request | |
[ ] documentation issue | |
**Database system/driver:** | |
[ ] `cordova` |
View .css
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
#top-box { | |
margin-top: 0; | |
} | |
#top-editarea { | |
margin-bottom: 0; | |
} | |
#gnav { |
View .html
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
<nav id="gnav"> | |
<div class="gnav-inner" id="menu-scroll"> | |
<div class="menu"><a href="/"><i class="fa fa-home" aria-hidden="true"></i> HOME</a></div> | |
<div class="menu"><a href="/archive/category/エンジニアリング"><i class="fa fa-laptop" aria-hidden="true"></i> エンジニアリング</a></div> | |
<div class="menu"><a href="/archive/category/フリーランス/ノマド"><i class="fa fa-globe" aria-hidden="true"></i> フリーランス/ノマド</a></div> | |
<div class="menu"><a href="/archive/category/旅行"><i class="fa fa-suitcase" aria-hidden="true"></i> 旅行</a></div> | |
<div class="menu"><a href="/archive/category/書評"><i class="fa fa-book" aria-hidden="true"></i> 書評</a></div> | |
<div class="menu"><a href="/archive/category/雑記"><i class="fa fa-bars" aria-hidden="true"></i> 雑記</a></div> | |
</div> | |
</nav> |
View コードシンタックス.css
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
/*Monokai*/ | |
.entry-content pre.code { | |
background-color: #272822; /*背景色*/ | |
color: #F8F8F2; /*テキスト*/ | |
} | |
.synComment { color: #75715E } /*コメント*/ | |
.synSpecial { color: #E6DB74 } /*特殊文字*/ | |
.synType { color: #66D9EF } /*型*/ | |
.synPreProc { color: #F92672 } /*プリプロセッサ*/ | |
.synStatement { color: #F92672 } /*ステートメント*/ |
View フォント全体.css
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
body { | |
font-family: "メイリオ", Meiryo; | |
} | |
View 画像レイアウト調整.css
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
.entry-content img { | |
max-width: 100%; | |
width: 430px; | |
padding-bottom: 10px; | |
padding-top: 5px; | |
display: block; | |
} |
View heading.css
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
.entry-content h1 { | |
padding: 4px 3px; | |
background: #f3f3f3; | |
border-left: 8px solid #3f3f3f; | |
margin:80px 0 30px 0; | |
font-size: 130%; | |
} | |
.entry-content h2 { | |
position: relative; |
View .css
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
/* ### ヘッダーの背景色 ### */ | |
#blog-title{ | |
background: #3f3f3f !important; | |
} | |
/* ### ブログタイトルの文字色 ### */ | |
#title a{ | |
color: white !important; | |
} | |
/* ### ブログ説明の文字色 ### */ | |
#blog-description{ |
View .html
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
<nav id="gnav"> | |
<div class="gnav-inner" id="menu-scroll"> | |
<div class="menu"><a href="/"><i class="fa fa-home" aria-hidden="true"></i> HOME</a></div> | |
<div class="menu"><a href="/"><i class="fa fa-info-circle" aria-hidden="true"></i> ABOUT</a></div> | |
<div class="menu"><a href="/"><i class="fa fa-bolt" aria-hidden="true"></i> TIPS</a></div> | |
<div class="menu"><a href="/"><i class="fa fa-graduation-cap" aria-hidden="true"></i> STUDY</a></div> | |
<div class="menu"><a href="/"><i class="fa fa-wrench" aria-hidden="true"></i> DESIGN</a></div> | |
<div class="menu"><a href="/"><i class="fa fa-envelope-o" aria-hidden="true"></i> CONTACT</a></div> | |
</div> | |
</nav> |
View はてなブログから自前のブログに遷移させるスクリプト.js
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
<script> | |
var newDomain = "https://www.moyashidaisuke.com"; // 新URL | |
var replacedStr; | |
var path = location.pathname; | |
if(path.startsWith('\/entry')){ //記事ページの時 | |
// pathを/区切りで分解 | |
var ary = path.split('/'); |