settings
以下は色んなサイトからお借りしてきたCSS(ちゃんと引用元を書いたほうがよかったかな…)
code:style.css
/* pinを独立した行にする */
.page-list-item.pin + .page-list-item:not(.pin) {
clear: both;
}
code:style.css
/* #で始まるタグをラベル風にする */
display: inline-block;
padding: 2px 8px;
margin: 0 8px 10px 0;
font-size: 0.8em;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
code:style.css
/* Tumblr風の見た目 */
body {
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.navbar-default {
box-shadow: 0 0 0 1px hsla(0,0%,100%,.13);
}
.search-form .form-group input {
background-color: rgba(0,0,0,.13);
}
.grid li.page-list-item a {
border-radius: 3px;
}
.grid li.page-list-item a .pin {
}
.grid li.page-list-item a {
box-shadow: 0 2px 0 rgba(0,0,0,.13);
}
.grid li.page-list-item a .header {
padding: 5px 12px 10px;
}
.quick-launch .new-btn,
.quick-launch .new-btn:hover {
}
.quick-launch .new-btn .horizontal-line,
.quick-launch .new-btn .vertilcal-line {
}
.page {
border-radius: 3px;
}
.dropdown-menu>li>a.selected {
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
}
.grid li.relation-label a {
}
.grid li.relation-label .arrow {
border-color: transparent transparent transparent #4AA8D8; }
.grid li.relation-label.links a {
}
.grid li.relation-label.links .arrow {
border-color: transparent transparent transparent #56bc8a; }
.grid li.relation-label.empty-links a {
}
.grid li.relation-label.empty-links .arrow {
border-color: transparent transparent transparent #F2992E; }
.page-menu .tool-btn:hover {
background-color: hsla(0,0%,100%,.6);
}
.line a.page-link {
font-weight: 700;
}
.line a.empty-page-link {
}
.line a.link {
text-decoration: none;
}
.line a.link:hover {
text-decoration: underline;
}
.line .meta {
}
.line .meta.unread {
}
.grid.grid-md li.page-list-item a .header {
padding: 0 14px 21px;
}
.quick-launch .project-home,
.quick-launch .project-home .icon-home {
}
.quick-launch .tool-btn,
.page-sort-menu .tool-btn {
}
-------------------------------------------------------------
外部リンクに印をつける
code:style.css
.line span:not(.modal-image):not(.pointing-device-map) > a.link:not(.icon)::after,
font-family: 'Font Awesome 5 Free';
content: ' \f360';
font-weight: 900;
font-size: 0.9rem;
padding-right: 0.5rem;
display: inline-block;
}
--------------------------------------------------------------------
code:style.css
/* 箇条書きを控えめにする */
.app .line .indent-mark .dot {
height: .2em; width: .4em; border-radius: 25%;
background-color: rgba(173,173,173,.55) }
.app:not(.presentation) .line .indent-mark .dot { top: auto; bottom: 0 }
code:style.css
/* ピンを画像にする */
.grid li.page-list-item a .pin { background-color: transparent; background-image: none }
.grid li.page-list-item a .pin::after {
content: '\f08d'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
font-size: 18px; color: #795AD0; bottom: 0 }