ProjectHome-Toolbar (copy)
Project Title
Scrapboxアイコンをハンバーガーアイコンに置き換え
code:style.css
.brand-icon, .navbar-brand img, .navbar-brand span { display: none !important }
.navbar-brand::before {
margin-left: 6px;
content: '\f0c9'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 22px; color: #ffffff; }
プロジェクトタイトルをメニューバー上に移動
code:style.css
.quick-launch .project-home {
position: fixed;
top: -2px;
left: 20px;
z-index: 1000;
}
@media screen and (max-width: 767px) {
.quick-launch .project-home {
/* left: calc((100% - 1080px)/2); */
left: 35px;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.quick-launch .project-home {
left: 50px;
}
}
@media screen and (min-width: 992px) and (max-width: 1260px) {
.quick-launch .project-home {
left: 65px;
}
}
@media screen and (min-width: 1261px) {
.quick-launch .project-home {
left: calc((100% - 1280px)/2 + 75px)
}
}