用知乎摸鱼,防止标题、图片太过醒目导致自己暴露
- 隐藏标题
- 隐藏图片
Authorxufeiranfree
LicenseNo License
Categoryzhihu
Created
Updated
Size978 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
用知乎摸鱼,防止标题、图片太过醒目导致自己暴露
/* ==UserStyle==
@name 知乎摸鱼
@version 20240911.01.54
@namespace https://userstyles.world/user/xufeiranfree
@description 用知乎摸鱼,防止标题、图片太过醒目导致自己暴露- 隐藏标题- 隐藏图片
@author xufeiranfree
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://www.zhihu.com/"),
url-prefix("") {
/* 标题 */
.QuestionHeader-title {
color: transparent !important;
transition: color 0.3s ease !important;
}
.QuestionHeader-title:hover {
color: inherit !important;
}
/* timeline 标题 */
.ContentItem-title {
font-weight: normal;
font-style: normal;
}
/* 图 */
.RichText figure div {
width: 20px !important;
height: auto !important;
transition: width 0.3s ease !important;
}
.RichText figure div:hover {
width: auto !important;
height: auto !important;
}
}