watasuke
https://lh3.googleusercontent.com/a-/AOh14Gjge5jK69XFt8LtDhGVHZjvOpt25b4j8Szy_u3bGhc=s96-c#.png
アイコンを付けて、先頭にピン留めすると、faviconになる
ユーザー名でページを作ると、右上のプロフィール的なアイコンが変わる
これをタグとして付けているページはおおよそわたすけという人間についての(より個人的な)情報を書いている(と思う)
code:style.css
a.btn.project-home .title {
height: 38px;
}
a.btn.project-home:hover {
background-color: #555 !important; }
code:style.css
.indent-mark>.char-index { display: inline-block; }
.indent-mark .char-index:nth-child(2n) { background-color: #0006; } .indent-mark .char-index:nth-child(2n+1) { background-color: #0003; } .indent-mark .char-index:nth-last-child(2) { background-color: transparent !important; } /* 箇条書きの文頭dotは背景を変更しない */
.indent-mark .char-index:last-child { background-color: transparent !important; } /* 上の変更によってコードブロック文頭の色が変わることがある */
昔書いてたstyle.css
code:css
/* ユーザー名をHeaderに表示(公式が実装したのでいらなくなった) */
a.btn.project-home {
position: fixed;
top: 0;
left: calc(32px + 24px + 12px); /* icon + chevron + padding-left * /
border-radius: 1px;
z-index: 9999;
min-height: 38px !important /* header height - border width (top, bottom) * /
}