settings
ページの見た目を変更
code:style.css
.page {
border-top-left-radius: 50px;
border-bottom-right-radius: 50px;
}
ページタイトルを{}で囲む
code:style.css
.editor .line-title .text {
font-size: 1.1em;
font-weight: bold;
}
わおはるひ.icon
このひと言が聞きたくてUserCSSを使っているといっても過言ではないという…… suto3.icon
code:style.css
.editor .line-title .text::before {
content: '{';
font-size: 1.2em;
color: #AAA;
display: inline;
width: 1.2em;
height: 1.2em;
padding-right: 0.1em
}
code:style.css
.editor .line-title .text::after {
content: '}';
font-size: 1.2em;
color: #AAA;
display: inline;
height: 1.2em;
position: absolute;
right: 0;
width: 0;
padding-left: 0.1em
}
zatsma.icon吹き描きに合わせ、閉じ括弧が右端固定となるように変更
CSSの作法的にfixすべき点などありましたら修正おねがいします
code:style.css
.grid li.page-list-item > ahref^="/delite/" > .content > .header > .title::before {
content: '{';
color: #AAA;
}
.grid li.page-list-item > ahref^="/delite/" > .content > .header > .title::after {
content: '}';
color: #AAA;
}
code:style.css
body{
--new-button-bg: #0c8; /* NEWボタン */
--new-button-hover-bg: lightgreen;
--new-button-active-bg: darkgreen;
--new-button-horizontal-color: #FFF; /* NEWボタン */
--new-button-vertical-color: #FFF; /* NEWボタン */
}