settings
code:style.css
body {
font-family: '游明朝体','YuMincho','游明朝','Yu Mincho','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 Pro','Hiragino Mincho Pro',serif;
}
.editor, .stream, li.page-list-item {font-family: unset !important;}
code:style.css
/* 外部リンクにiconをつける */
.line span:not(.modal-image):not(.pointing-device-map) > a.link:not(.icon)::after {
font-family: 'Font Awesome 5 Free';
content: ' \f35d';
font-weight: 900;
display: inline-block;
}
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
grid-column-start: 1;
}
ブランドアイコンの変更
code:style.css
/* Overwrite the brand icon */
a.navbar-brand.dropdown-toggle {
position: relative;
}
a.navbar-brand.dropdown-toggle::before {
content: "";
width: 46px;
height: 46px;
display: block;
position: absolute;
top: 2px;
left: -3px;
background-size: contain;
background-repeat: no-repeat;
border-radius: 50%;
}
code:style.css
}
/* 付箋の折返しを背景と同色に */
.grid li.page-list-item a .pin {
}
code:style.css
.navbar .navbar-menu>li.stream-btn,
.navbar .navbar-menu>li.stream-btn.hidden-xs
{ display: block !important; }
code:style.css
display: none;
}
code:style.css
.line .indent-mark .dot:before {
display: block;
position: absolute;
right: 5px;
top: -10px;
content: '\f518';
/* font-family: FontAwesome;*/
font-family: 'Font Awesome 5 Free';
font-weight: 900
}
.line .indent-mark .dot {
background-color: transparent;
}
/* 第1レベルのインデント(c-0)の設定 */
.line .indent-mark .c-0 + .dot {
background-color: transparent;
}
/* このレベルの行頭文字を表示 */
.line .indent-mark .c-0 + .dot:before {
content: '\f02d';
font-weight: 400
font-family: 'FontAwesome 5 free';
}
カードをお月様化
code:style.css
.page,
.grid li.page-list-item a,
.grid.grid-md li.page-list-item a,
.grid.grid-lg li.page-list-item a {
border-radius: 50% ;
box-shadow: none;
background: yellow;
}
.grid li.page-list-item a .header {
position: relative;
top: 17px;
left: 5px;
z-index: 0;
background: yellow;
border-top: none;
}
.grid li.page-list-item a:hover {
transform: scale(1.5);
color: white;
box-shadow: none;
}
.container {
max-width: none;
}
body{
background-color: white;
}
.grid li.page-list-item a .icon img {
width: 96px;
height: 96px;
border-radius: 50%;
margin: auto;
}
pinページを少し大きくして前に出す
code:style.css
.page-list-item.pin {
transform: scale(1.2);
z-index: 3;
}