-
-
Save czyt/1bf88c68c752f1517ab8494ce4a3293b to your computer and use it in GitHub Desktop.
V2EX Custom CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* https://www.v2ex.com/settings */ | |
| /* 使用圆角头像 */ | |
| img.avatar { | |
| border-radius: 100%; | |
| } | |
| /* 设定顶部栏颜色 */ | |
| body,#Top,#Bottom { | |
| background-color:#2b2f3e; | |
| } | |
| /* 设定链接颜色 */ | |
| a.top:link, a.top:visited { | |
| color:#fff; | |
| } | |
| /* 设定链接停留颜色 */ | |
| a.top:hover { | |
| color:#99a; | |
| text-decoration:none; | |
| } | |
| /* 设定背景颜色 */ | |
| #Wrapper { | |
| background-color:#505770; | |
| } | |
| /* 修改 Logo */ | |
| [name="top"] img { | |
| display:none; | |
| } | |
| #Top td[width="110"] { | |
| height: 30px; | |
| background: url( https://ooo.0o0.ooo/2017/02/13/58a1bdb7624df.png) no-repeat; | |
| background-size: 94px 30px; | |
| } | |
| /* 隐藏侧栏广告 */ | |
| #Rightbar > div:nth-child(4) { | |
| display:none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment