Created
February 9, 2018 14:04
-
-
Save MitaZ/4d793414e9a55a3a06f3d6c40721b882 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