Add nice rounded corners and shadows👏

百度文库的卡片增加阴影和圆角👏

目前为 2021-04-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         Add nice rounded corners and shadows👏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  百度文库的卡片增加阴影和圆角👏
// @author       You
// @match        https://wenku.baidu.com/view/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const question= document.getElementsByClassName('question')[0];
    question.style['border-radius'] = '1rem';
    question.style['box-shadow'] = '2px 2px 10px #ccc';

    const answer= document.getElementsByClassName('answer')[0];
    answer.style['box-shadow'] = '2px 2px 10px #ccc';
    answer.style['border-radius'] = '1rem';

    const sidebar= document.getElementsByClassName('sidebar')[0];
    sidebar.style['border-radius'] = '1rem';
    sidebar.style['box-shadow'] = '2px 2px 10px #ccc';
    sidebar.style.overflow = 'hidden';

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址