Skip to content

Commit

Permalink
tissue.safemode.user.css
Browse files Browse the repository at this point in the history
  • Loading branch information
eai04191 committed Feb 4, 2019
1 parent f2a5dbe commit 747ef1e
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ YouTubeでシアターモードで再生中の動画の大きさを1920x1080に

1920x1080で取るためにはそれより大きいディスプレイが必要。画像は2560x1440。

### [tissue.safemode.user.css](/userstyle/tissue.safemode.user.css)

![SS](https://i.imgur.com/g1r8iXn.png)

[Tissue](https://shikorism.net/) のセンシティブな要素を隠すスタイル。

センシティブな要素しかないだろ。


### [](/userstyle/)


Expand Down
78 changes: 78 additions & 0 deletions userstyle/tissue.safemode.user.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/* ==UserStyle==
@name shikorism.net あんしんモード
@namespace mizle.net
@version 1.0.0
@author Eai
@license MIT
@preprocessor stylus
@var checkbox hideImages "画像を隠す" 1
@var checkbox hideProfile "プロフィールを隠す" 1
@var checkbox hideTaglist "タグリストを隠す" 1
@var checkbox hideUsername "ユーザー名を隠す" 1
@var checkbox hideTags "チェックインのタグを隠す" 1
@var checkbox hideNotes "チェックインのノートを隠す" 1
@var checkbox hideExternalLinks "外部リンクのURLを隠す" 1
@var checkbox hideCards "リンクカードを隠す" 1
==/UserStyle== */
@-moz-document domain("shikorism.net") {

if hideImages {
img {
filter: brightness(0);
}
}

if hideProfile {
.col-lg-4 {
.card .card-body .text-dark,
.card .card-body .text-muted {
color: transparent !important;
background: black;
}
}
}

if hideTaglist {
.col-lg-4 {
.card .list-group .list-group-item {
color: transparent !important;
}
}
}

if hideUsername {
a[href^="https://shikorism.net/user/"].text-dark {
color: transparent !important;
}
}

if hideTags {
a.badge {
color: transparent !important;
}
}

if hideNotes {
p.tis-word-wrap {
background: black;
}
}

if hideExternalLinks {
a.overflow-hidden[target="_blank"] {
color: transparent !important;
background: black;
}
}

if hideCards {
.card.link-card {
.card-title,
.card-text {
color: transparent !important;
background: black;
}
}
}
}

0 comments on commit 747ef1e

Please sign in to comment.