hide side column, expand main column
Zhihu Simplify by gitsang
Details
Authorgitsang
LicenseMIT License
Categoryzhihu
Created
Updated
Size442 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Zhihu Simplify
@version 20211025.02.16
@namespace userstyles.world/user/gitsang
@description hide side column, expand main column
@author gitsang
@license MIT License
==/UserStyle== */
@-moz-document domain("zhihu.com") {
.Reward,
.Question-sideColumn {
width: 0px;
display: none!important;
}
.Question-main,
.Question-mainColumn {
width: 90%;
padding-left: 5%;
padding-right: 5%;
}
}