generated at
増井俊之


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; //background-image: URL('https://gyazo.com/c3b1484f39a8e0b3dc375cc802fe37b0.gif'); //background-image: URL('https://gyazo.com/eda87a7dced9c0ea2edb7dfb392aa446.png'); } 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;} } */

script.js
$('body').attr('data-daiiz-rel-bubble', 'on'); // 関連ページを吹き出し表示する $('body').attr('data-daiiz-text-bubble', 'on'); // リンク先ページのテキストを表示する

codeblockのフォントを小さくする
style.css
.line span.code-block { line-height: 1.2em; font-size: 88%; }
codeblockの先頭行の色をおとなしくする
style.css
.line span.code-block .code-block-start { background-color: #eee; } .line span.code-block .code-block-start a { color: #555; }

未読だけのページでも右側にテロメア表示
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)