返回列表 发帖

[问题求助] 希望内置 夜间模式 插件。。。

如题、跪求~~~

手机浏览器用多了吧

TOP

自行编辑custom.css文件即可,我用的“夜间模式”:(可能会造成某些页面显示不正常)
  1. * {
  2.   background-color: #333 !important;
  3.   color: #ddd !important;
  4.   box-shadow:none !important;
  5.   border-color:#555 !important;
  6.   text-shadow:none  !important;
  7. }

  8. input{
  9.   border: 1px solid #999 !important;
  10. }

  11. a{
  12. color:#0c0 !important;
  13. }
  14. text-decoration:none  !important;
  15. }
  16. a:visited{color:#888 !important;}
  17. a:hover{
  18. color:#00FF03 !important;
复制代码

TOP

返回列表