知乎视频页面 优化

知乎的视频页面样式不好看,做了简单优化

// ==UserScript==
// @name         知乎视频页面 优化
// @version      0.1
// @description  知乎的视频页面样式不好看,做了简单优化
// @author       写代码的猫叔
// @match        https://www.zhihu.com/people/*
// @grant        GM_addStyle
// @namespace https://greasyfork.org/users/825126
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
        #Profile-zvideos .List-item{
            width:300px;
            display:inline-block;
        }
        #Profile-zvideos .ContentItem-meta,#Profile-zvideos .RichContent-inner{
            display:none;
        }

        #Profile-zvideos .ContentItem-actions{
            flex-wrap:wrap;
            width: 100%;
        }

        #Profile-zvideos .ContentItem-title{
            font-size:15px;
            margin-bottom: 10px;
        }

        #Profile-zvideos .RichContent-cover{
            width: 300px;    height: 184px;
        }
    `)
})();