settings
https://gyazo.com/32ca8bbd9692e38bc850f614c7d3043e
(上記の画像は一覧のときに白紙だとそっけなくなるので入っている。)
フッター
新規作成のときに、自分のプロジェクトなのか編集権限のある他のプロジェクトなのか判断しやすくなる。
このstyle.cssをこのページの一番下に書いたら反映されなかったのでここに書いた。
code:style.css
.app:not(.presentation) .page::after {
/* content: 'フッターのテスト'; */
display: block;
/* margin-top: 1rem; */
/* padding: 0rem 0; */
text-align: right;
/* border: solid #0003; border-width: 1px 0; font: 500 normal 1.8rem/1 sans-serif */ }
タグのデザイン
code:style.css
/* #で始まるタグをラベル風にする */
display: inline-block;
margin: 4px;
font-size: 14px;
height: 32px;
width: auto;
padding-left: 8px;
padding-right: 8px;
padding-top: 2px;
padding-bottom: 2px;
border-radius: 2px;
border-style: none;
background-color: rgba(12, 12, 13, 0.1);
}
background-color: rgba(12, 12, 13, 0.2);
}
background-color: rgba(12, 12, 13, 0.3);
}
ページリンク
code:style.css
}
空ページへのリンク
code:style.css
}
ブランドアイコンの変更
code:style.css
/* Overwrite the brand icon */
a.navbar-brand.dropdown-toggle {
position: relative;
}
a.navbar-brand.dropdown-toggle::before {
content: "";
width: 32px;
height: 32px;
display: block;
position: absolute;
top: 3px;
left: -2px;
background-size: contain;
background-repeat: no-repeat;
border-radius: 50%;
}
プロジェクトタイトル系
code:style.css
/* .project-home>.title {
/* Make title line-height more narrow */
/* line-height: 1em; */
/* } */
/* Project description */
/* .project-home>.title:after { */
/* content: "\A\A 技術的なこと、想いとか \A 🎋ReadableStreamがアップロード出来るようになりますように🌟"; */
/* content: "\A\A 静的に安全性を保証できる技術が好き"; */
/* content: "\A\A 技術的なこととか、たまに非技術も。"; */
/* white-space: pre; */
/* font-size: 0.7em; */
/* } */
外部リンクにアイコンつける
code:style.css
/* External links */
/*
.line a.link:not(.icon)::after {
font-family:'FontAwesome';
content: ' \f08e';
display: inline-block;
}
*/
.line a.link:not(.icon)::after {
font-family:'Font Awesome 5 Free';
font-weight: 900;
content: ' \f35d';
display: inline-block;
}
code:style.css
.deco-\< {
border-radius: 3px;
display: inline-block;
line-height: 10px;
padding: 5px 8px;
vertical-align: middle;
}
ピンしたページのスタイル
ピンがはっきり分かって良い。
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: 'FontAwesome';
font-size: 20px;
bottom: 0;
display: inline-block;
transform: rotate(35deg);
filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5));
}
*/