博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
知乎页面颜色个性化修改
阅读量:5102 次
发布时间:2019-06-13

本文共 2903 字,大约阅读时间需要 9 分钟。

知乎页面颜色个性化修改

代码:

/***知乎页面颜色个性化修改*知乎样式太素,阅读时,寻找功能按钮需要付出一些精力成本。*故试做修改,目的不在美观,*而在于高亮显示功能按钮,放大正文字号便于使用阅读。*不喜欢样式的可以自己调一下配色和文字大小。*//*知乎头部logo*/div.AppHeader-inner svg g path {
fill: #ff4444;}/*知乎头部搜索框 有值后颜色纠正*/div.AppHeader-inner div.Input-after button.SearchBar-hasValueSearchIcon svg g path {
fill: #ffffff;}/*知乎默认蓝色按钮 改成红色*/.Button--primary.Button--blue, .Button--primary.Button--blue:disabled {
background: #ff4444; border: 1px solid #ff0000;}/*关注问题及回答问题按钮 单独纠正*/div.QuestionButtonGroup button.Button.Button--primary.Button--blue {
color: #ffffff; border: 1px solid #ff0000;}/*关注问题及回答问题按钮 单独纠正*/div.QuestionButtonGroup button.Button--blue {
color: #ff4444; border: 1px solid #ff4444;}/*问题评论按钮*/div.QuestionHeader-Comment button.Button.Button--plain {
color: #ff4444;}/*问题详情 展开按钮*/div.QuestionHeader-detail button.Button.QuestionRichText-more.Button--plain {
color: #ff4444;}/*问题详情 展开按钮 右侧箭头*/div.QuestionHeader-detail button.Button.QuestionRichText-more.Button--plain svg g path {
fill: #ff4444;}/*问题评论按钮 左侧箭头*/div.QuestionHeader-Comment button.Button.Button--plain svg g path {
fill: #ff4444;}/*问题详情 收起按钮 布局及文字颜色*/div.QuestionHeader-actions button.Button.Button--plain {
color: #ffffff; background: #ff4444; padding-left: 10px; padding-right: 10px; border-radius: 2px;}/*问题详情 收起按钮 箭头颜色*/div.QuestionHeader-actions button.Button.Button--plain svg g path {
fill: #ffffff;}/*答案正文展开提示文字 */div.RichContent.is-collapsed.RichContent--unescapable button.Button.ContentItem-rightButton.Button--plain {
color: #ff4444;}/*答案正文展开提示文字 右侧箭头*/div.RichContent.is-collapsed.RichContent--unescapable button.Button.ContentItem-rightButton.Button--plain svg.Icon.ContentItem-arrowIcon.Icon--arrow g path {
fill: #ff4444;}/*答案收起按钮 布局及背景颜色*/button.Button.ContentItem-action.ContentItem-rightButton.Button--plain {
padding-left: 10px; padding-right: 10px; background-color: #ff4444; border-left-width: 0; border-radius: 1px;}/*答案收起按钮 右侧箭头颜色*/button.Button.ContentItem-rightButton.Button--plain {
color: #ffffff;}/*答案评论按钮 文字颜色*/div.ContentItem-actions>:nth-child(2) {
color: #ff4444;}/*答案评论按钮 左侧小图标*/svg.Icon.Icon--comment.Icon--left g path {
fill: #ff4444;}/*答案评论收起按钮 背景及文字颜色*/div.Comments.Comments--withEditor.Comments-withPagination button.Comments-Packup-Button {
background: #ff4444; color: #ffffff;}/*答案评论收起按钮 右侧小箭头*/svg.Icon.ContentItem-arrowIcon.is-active.Icon--arrow g path {
fill: #ffffff;}div.Comments.Comments--withEditor.Comments-withPagination button.Comments-Packup-Button svg g path {
fill: #ffffff;}/*答案 正文字号*/div.RichContent-inner {
font-size: 17px;}/*答案 正文字号 纠偏(这是缩略时字号,别动它)*/div.RichContent.is-collapsed div.RichContent-inner {
font-size: 15px;}

 

代码使用方法:chrome插件Stylebot

 

转载于:https://www.cnblogs.com/ferron/p/7507027.html

你可能感兴趣的文章
Eclipse 反编译之 JadClipse
查看>>
Python入门-函数
查看>>
[HDU5727]Necklace(二分图最大匹配,枚举)
查看>>
距离公式汇总以及Python实现
查看>>
设计模式之装饰者模式
查看>>
一道不知道哪里来的容斥题
查看>>
Blender Python UV 学习
查看>>
window添加右键菜单
查看>>
入手腾龙SP AF90mm MACRO
查看>>
python学习4 常用内置模块
查看>>
Window7上搭建symfony开发环境(PEAR)
查看>>
ResolveUrl的用法
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
<转>关于MFC的多线程类 CSemaphore,CMutex,CCriticalSection,CEvent
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
css3之transform-origin
查看>>
[转]JavaScript快速检测浏览器对CSS3特性的支持
查看>>