settings
code:style.css
code:style.css
body, .editor{
font-size: 16px;
}
body, *::after, *::before {
/* 全体の最大幅 */
--body-max-width: 1400px; /*【値変更非対応】*/
/* ページの横padding */
--body-padding-horizon: 8px; /*【値変更非対応】*/
/* ページ内のフォントサイズ */
--page-font-size: 15px;
/* デフォルトで設定されているフォント
* Font Awesomeを常時使えるようにするUserCSSから流用したもの */
--base-fonts: "Roboto",Helvetica,Arial,"Hiragino Sans","Font Awesome 6 Free","Font Awesome 6 Brands","AppIcons",sans-serif;
/* ページタイトルとかに使っているフォント */
--label-fonts: "Noto Sans JP", var(--base-fonts);
--animation-time: .3s;
/* # ナビゲーションバー */
/* 1行目の背景色 */
--navbar-bg: hsl(265deg 2% 23%); /*hsl(252deg 39% 60%); /*hsl(265deg 19% 20%);*/
/* 区切り線の色 */
--navbar-separator-color: hsl(265deg 91% 74%);
/* 区切り線の長さ */
--navbar-separator-width: 2px;
/* ナビゲーションバーの横margin */
--navbar-margin-horizon: 8px;
/* ナビゲーションバーの最小縦幅 */
--navbar-min-height: calc(var(--navbar-row-1-height) + var(--navbar-row-2-height));
/* ナビゲーションバーの最大縦幅 */
--navbar-max-height: var(--navbar-min-height); /* 変動しないのでminと同じ値 */
/* ナビゲーションバーの1行目の縦幅 */
--navbar-row-1-height: calc(40px + var(--navbar-separator-width)); /* デフォルト:40px */
--navbar-row-2-height: 40px;
/* 新規作成ボタンの色 */
--new-button-bg:hsl(265.85deg 56.43% 76.05%)
--new-button-hover-bg: hsl(238.15deg 38.52% 62.54%)
--new-button-active-bg: hsl(238.15deg 38.52% 62.54%));
/* 新規作成ボタンの大きさ */
--new-button-size: 32px;
/* 左上のロゴをホバーした時の影 */
--navbar-brand-hover-shadow: var(--navbar-separator-color);
/* 左上のロゴの隣の矢印の色 */
--navbar-icon-color: white;
--navbar-icon-active-color: var(--navbar-separator-color);
--navbar-icon-hovered-color: var(--navbar-separator-color);
/* # ツールバー */
/* ツールバーの高さ */
--tool-height: var(--navbar-row-1-height);
/* ツールバーの下マージン */
--tool-margin-bottom: calc((var(--navbar-max-height) - var(--navbar-row-1-height) - var(--tool-height)) / 2);
/* ツールバーの角丸の深さ */
--tool-border-radius: 3px;
/* プロジェクトタイトルのボタン色 */
--tool-bg: hsl(265deg 2% 24%); /*hsl(252deg 2% 24%); /*hsl(265deg 31% 34%); /* ホバーしていない時に使われる */
--tool-hover-bg: hsl(265deg 2% 31%); /*hsl(230deg 12% 40%); /* 元々は--tool-bgだった */
/* more page of の文字色 */
--tool-color: hsl(0deg 0% 100% / 71%);
/* プロジェクトタイトルと戻るボタンの間の線【不要】 */
--tool-separator-width: 1.5px;
--tool-separator-height: 18px;
/* # ページメニュー */
--page-menu-icon-size: 46px;
/* ページの横padding
* テロメアの位置調整も必要なので変数で管理する */
--page-padding-horizon: 30px; /* 元々は42px */
/* ページの上padding */
--page-padding-top: 21px; /* 元々は42px */
/* ページタイトルの左padding */
--line-title-margin-left: -12px;
/* ページタイトル下線の幅 */
--line-title-border-width: 2px;
/* ページタイトル下線の色 */
--line-title-border-color: var(--line-title-color, white);
/* テロメアの色 */
--telomere-border: hsl(224deg 8% 36%);
--telomere-unread: hsl(265deg 76% 71%);
--telomere-updated: hsl(265deg 92% 82%);
/* # 関連ページリスト・ページカード */
/* 関連ページリストのラベルのホバー時の文字 */
--relation-label-text: hsl(180deg 1% 87%); /* 既定値 */
--relation-label-text-1: hsl(257deg 39% 70%);
--relation-label-text-p1: hsl(180deg 55% 47%);
--relation-label-text-2: hsl(218deg 50% 61%);
--relation-label-text-empty: hsl(9deg 50% 73%);
/* 関連ページリストのページカードの背景 */
--relation-page-bg: hsl(0deg 0% 19.83% / 60%); /* 既定値 */
--relation-page-bg-1: hsl(257deg 39% 40%);
--relation-page-bg-p1: hsl(180deg 47% 27%);
--relation-page-bg-2: hsl(218deg 50% 38%);
--relation-page-bg-empty: hsl(9deg 56% 51%);
/* 関連ページリストのページカードの線 */
--relation-page-border-color: hsl(0deg 0% 100% / 50%);
/* ページカードの背景 */
--card-bg: var(--relation-page-bg);
/* ページカードの上の線 */
--card-title-bg: hsl(265deg 17% 46%);
}
navbarを広げ過ぎない
code:style.css
.app .navbar .row {
max-width: 1200px;
margin: 0 auto;
}
titleを固定
code:style.css
@media (min-width: 1000px) {
/* PC版(長い方) */
div.left-box {
display: flex;
align-items: center;
position: fixed;
top: 0;
margin-left: 52px;
z-index: 1000;
flex-wrap: nowrap;
width: 212px;
}
div.quick-launch a.project-home {
/* 井戸端のUserCSSでの設定を上書きする */
position: relative;
left: 0;
}
}
@media (max-width: 768px) {
/* スマホ版 */
div.expandable-menu {
/* .expandable-menuが被らないようにずらす */
top: 40px;
max-width: 100%;
}
}
日付表示
code:style.css
.quick-launch .project-home {
padding: 0 0 0 10px;
}
.quick-launch .project-home .title::after {
content: "";
margin-left: 10px;
padding: 5px 0px 5px 50px;
background-size: contain;
background-repeat: no-repeat;
}
ページタイトル2行
code:style.css
li.page-list-item.grid-style-item div.title {
-webkit-line-clamp: 2;
}
ページに影をつける
code:style.css
.page {
box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
コードブロックを見やすくする
code:style.css
.line span.code-block .code-block-start,.table-block .table-block-start {
font-family: "UD デジタル 教科書体 NK-B", "MotoyaLMaru W3 mono", "Kosugi Maru", "Roboto",Helvetica,Arial,"Hiragino Sans",sans-serif;
}
.line span.code-block .code-block-start a,
.table-block .table-block-start a {
text-decoration: unset;
}
.line span.code-block .code-block-start,
.table-block .table-block-start {
border: unset;
margin-left: 3px;
box-shadow: 2px 2px 2px gray;
}
.line span.code-block .code-block-start .tool-buttons .fa-copy::before,
.table-block .table-block-start a::after {
}
.line span.code-block .code-block-start spantitle="css" a { }
}
.line span.code-block .code-block-start spantitle="html" a { }
.line span.code-block .code-block-start spantitle="tw" a { }
.line span.code-block .code-block-start spantitle="txt" a, .line span.code-block .code-block-start spantitle="qte" a { }
.table-block .table-block-start a {
}
.line span.code-block .code-block-start span a::before,
.table-block .table-block-start a::before,
.table-block .table-block-start a::after{
font-family: 'Font Awesome 5 Free';
font-weight: 900;
padding-right: 0.2rem;
display: inline-block;
top: 0.9rem;
}
content: '\f121';
}
.line span.code-block .code-block-start spantitle="txt" a::before { content: '\f5ad';
}
.line span.code-block .code-block-start spantitle="qte" a::before { content: '\f10d';
}
.line span.code-block .code-block-start spantitle="tw" a::before { content: '\f4ba';
}
.table-block .table-block-start a::before {
content: '\f0ce';
font-size: 12px;
}
.table-block .table-block-start span:last-child:after {
content: '.csv'; /* コードブロックと見た目を揃えてわかりやすくするため */
}
.table-block .table-block-start a::after {
content: '\f56d';
margin-left: 0.3em;
margin-right: -2px;
font-size: 12px;
}
code:style.css
.editor .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
/* 検索ワードを強調 */
.list li.page-list-item a .description strong {
background-color: yellow;
}
/* 検索結果にスクロールバーをつけたり */
.page-list.clearfix > .list:not(.create-searched-page) li.page-list-item a .description {
max-height: 70px;
margin: 10px 0;
overflow-y: auto;
border-style: solid hidden;
}
/* 検索結果を改行させる */
.page-list.clearfix > .list:not(.create-searched-page) li.page-list-item a .description span {
display: block;
}
code:style.css
.quick-launch .search-result-count small {
display: none;
}
見出し表示を追加
code:style.css
.line strong {
margin: 0.2em 0;
}
/* 見出しのリンクの下線を非表示にする */
.line strong a:link {
text-decoration: none;
}
.line strong:not(.level-1) .deco-\* {
padding: 0.3em 0;
line-height: 170%;
}
/* Level3以降は左にボーダー */
.line strong:not(.level-1):not(.level-2) .deco-\* {
padding-left: 0.5em;
padding-right: 0.5em;
}
/* Level4以降は下にもボーダー */
.line strong:not(.level-1):not(.level-2):not(.level-3) .deco-\*::after {
display: block;
position: absolute;
content: "";
width: 100%;
height: 4px;
}
.line strong.level-4 .deco-\* {
border-width: 7px !important;
}
.line strong.level-5 .deco-\* {
border-width: 9px !important;
}
ピン止め投稿のみ行頭にずらす
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
clear: both;
}
ピン止め変更
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: 20px; color: #A45AFF; bottom: 0 } 背景
code:style.css
html {
min-height: 100%;
}
body {background:
linear-gradient(0deg, rgba(243, 196, 170, 1), rgba(228, 81, 154, 1) 43%, rgba(77, 84, 224, 1));
z-index: 0;
background-size: cover;
background-attachment: fixed;
}
ドロップダウン拡張
code:style.css
.navbar-form .dropdown.open .dropdown-menu {
min-width: 100%;
max-height: calc(100vh - 130px) !important;
overflow-y: auto;
}
画像を並べて表示
code:style.css
/* マトリクス記法 */
.line:not(.cursor-line) .deco-\| { display: inline-flex }
.line .deco-\| img.image { object-fit: contain; margin: 0 }
/* 太字記法と組み合わせて列数を変える */
.line .level-1 .deco-\| > span { width: calc(100%/1) }
.line .level-2 .deco-\| > span { width: calc(100%/2) }
.line .level-3 .deco-\| > span { width: calc(100%/3) }
.line .level-4 .deco-\| > span { width: calc(100%/4) }
.line .level-5 .deco-\| > span { width: calc(100%/5) }
.line class^="level" .deco-\| img.image { object-fit: cover; width: 100%; height: 100% } /* 並べた画像の間にスキマが欲しい場合はこの2行を追加・ぴっちり敷き詰めたい場合はこの2行は不要 */
.line .deco-\| > span, .line class^="level" .deco-\| > span { overflow: hidden } .line .deco-\| img.image, .line class^="level" .deco-\| img.image { margin: .2em } 箇条書き
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
display: none; }
code:style.css
display: none;
}
#で始まるタグをラベル風にする
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
/* テーブルのセルをわかりやすくする */
.table-block table { background-color: transparent; border-collapse: separate; border-spacing: 2px }
.table-block table tr td:nth-child(odd) { padding: .1em; background-color: rgba(255,255,255,0.04) }
.table-block table tr:nth-child(even) td { background-color: rgba(255,255,255,0.06) } /* 偶数行を濃くする */
.table-block table tr:first-child td { font-weight: bolder; text-align: center } /* 1行目だけ太字&中央揃え */
.table-block table tr td:first-child { padding: 0; background-color: transparent; border-width: 0 }
マーカー
code:style.css
/* 二重括弧による強調をマーカーっぽくする */
.line strong:not(class) { background: linear-gradient(transparent 60%, rgba(171, 255, 79, .6) 60%, rgba(171, 255, 79, .6) 100%);
}
.line strong:not(class):hover { background: linear-gradient( to right,
transparent,
rgba(171, 255, 79, .6),
transparent 50%
) 0% center / 400% auto ; /* グラデーション */
padding: 0.1em 0.2em 0.1em 0.2em;
animation: marker 10s linear infinite;
animation-direction: reverse;
}
@keyframes marker {
to { background-position-x: 400%; }
}
インライン引用
test
code:style.css
.deco-\" {
border-radius: .2em;
padding: 0 .4em;
background-color: rgba(128,128,128,0.1);
font-size: 95%;
font-style: italic;
}
.line:not(.cursor-line) .deco-\"::before {
font-size: 85%;
/* font-family: 'FontAwesome'; */
font-family: 'Font Awesome 5 Free';
font-weight: 900;
content: '\f10d';
position: relative;
top: -0.5em;
left: -0.2em;
}
ネタバレ防止記法 こんにちは
code:style.css
.deco-\~:not(:hover) {
filter: blur(3px);
}
.cursor-line .deco-\~:not(:hover) {
filter: none;
}
ルビ記法
code:style.css
/*display: block;*/
margin-top: -4px;
/*width: 50px;*/
height: 14px;
font-size: 10px;
line-height: 12px;
padding: 0 1px;
background-color: grey;
white-space: nowrap;
text-overflow: ellipsis;
/*overflow-x: clip;*/
position: absolute;
z-index: 101;
opacity: .5;
}
フキダシ
code:style.css
.deco-\{, .deco-\} {
font-size: 1em;
padding: 0.1em 0.2em 0.1em 0.2em;
border-radius: 0.4em;
margin: auto 0.3em;
display: inline-block;
max-width: calc(100% - 100px);
vertical-align: top;
}
左吹き出しの角
code:style.css
.deco-\{:before {
position: absolute;
margin: 0;
padding: 0;
transform: translateX(-100%) translateY(calc(1em - 80%));
width: 0;
content: "";
border-width: 0 0 0.6em 0.6em;
border-style: solid;
}
右吹き出しの角
code:style.css
.deco-\}:after {
position: absolute;
margin: 0;
padding: 0;
transform: translateY(calc(1em - 80%));
width: 0;
content: "";
border-width: 0 0.6em 0.6em 0;
border-style: solid;
}
強調吹き出しの角
code:style.css
.deco-\!:before, .deco-\!:after {
}
吹き出し内のリンク色の調整
code:style.css
.deco-\{ a,
.deco-\} a {
}
code:style.css
.deco-\! {
padding: 0.1em 0.2em 0.1em 0.2em;
}
中央ぞろえ
code:style.css
.line:not(.cursor-line) .deco-\' {
position: absolute;
width: 100%;
text-align: center;
}
記法テスト
画像一行に敷き詰め [| [画像URL][画像URL][画像URL]…]
画像3列並べ [***| [画像URL][画像URL][画像URL]…]
こんにちは
中央ぞろえ