増井俊之
http://gyazo.com/ce44a0adde8a39df00cfa744d8f42d95.png
code:style.css_
div.unread {
width: 12px !important;
border-width: 0px 3px 0px 0px !important;
border-color: #007 !important; background-color: #999 !important; }
body {
//background-color: #e0e0ff !important; }
div.meta.unread {
background-color: #999 !important; }
div.page {
opacity: 0.95;
}
li.page-list-item {
opacity: 0.93;
}
div.editor {
background-color: #fff !important; }
.grid li.two-two.page-list-item {
width: 216px !important;
height: 316px !important;
}
.grid li.two-two.page-list-item a .title {
font-size: 20px !important;
}
.grid li.page-list-item {
width: 100px !important;
height: 150px !important;
}
.grid li.page-list-item a .title {
font-size: 12px !important;
}
/*
.cursor {
animation: blink 1s infinite;
}
*/
/*
@keyframes blink {
0% { opacity: 0; }
50% { opacity: 0; }
51% { opacity: 1; }
100% { opacity: 1;}
}
*/
code:script.js
$('body').attr('data-daiiz-rel-bubble', 'on'); // 関連ページを吹き出し表示する
$('body').attr('data-daiiz-text-bubble', 'on'); // リンク先ページのテキストを表示する
codeblockのフォントを小さくする
code:style.css
.line span.code-block {
line-height: 1.2em;
font-size: 88%;
}
codeblockの先頭行の色をおとなしくする
code:style.css
.line span.code-block .code-block-start {
}
.line span.code-block .code-block-start a {
}
未読だけのページでも右側にテロメア表示
code:script.js
const dummyUnread = document.createElement('div')
dummyUnread.classList.add('unread')
const dummy = document.createElement('div')
dummy.classList.add('telomere')
dummy.appendChild(dummyUnread)
document.body.appendChild(dummy)