generated at
増井俊之

style.css
.cursor { animation: blink 1s infinite; } @keyframes blink { 0% { opacity: 0; } 50% { opacity: 0; } 51% { opacity: 1; } 100% { opacity: 1;} } body { background-color: #80a080 !important; } /* .unread { width: 12px !important; border-width: 0px 3px 0px 0px !important; border-color: #007 !important; background-color: #999 !important; }*/ #daiiz-rel-cards-bubble { background-color: #fff; box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12); position: absolute; display: none; padding: 10px; box-sizing: content-box; z-index: 10000; } .daiiz-cards { height: 100%; overflow-x: auto; overflow-y: hidden; white-space: nowrap; } .daiiz-cards li { float: none !important; } #daiiz-rel-cards-bubble .page-list-item { display: inline-block; white-space: normal; }

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

style.css
/* トップメニューを固定 */ @media screen and (min-height: 600px) and (min-width: 768px) { .app:not(.presentation) { padding-top: 90px; padding-right: 0 !important } .app:not(.presentation) .page-menu { position: fixed; top: 90px } .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 990; overflow: unset } .dropdown.open .dropdown-menu { position: absolute; left: auto; top: auto; max-height: calc(100vh - 100px); overflow-y: auto } .dropdown.open .dropdown-menu.global-menu { left: 0; top: 54px } .page-menu .dropdown.open .dropdown-menu { position: absolute; top: 0 } }