Scrapboxを無にする
視界に入るもので,書いていることに関係のないものを全部 hover に押し込めて隠す
https://gyazo.com/bbec7c1b33870e241e9c966913a82d06
code:style.css
/* Light grey background */
body {
}
/* telomere */
.telomere-border {
}
.telomere-border.unread {
}
/* Disable shadow */
.page {
box-shadow: none;
}
/* Show navbar only on hover */
.navbar{
opacity: 0;
transition: opacity 0.5s;
}
.page-menu {
opacity: 0.2; /* Set this to 0 if you want a complete 無 */
transition: opacity 0.5s;
}
.navbar:hover, .page-menu:hover {
opacity: 1;
}
/* Add frame to image so that white image is distinguishable from white background */
.image {
border-radius: 3px;
}
UserCSS.icon