MomoYu网站样式优化(增加摸鱼友好性)

修改样式,个人偏好内容栏靠右,适合不适宜目光总是左撇到电脑最左边的打工人

// ==UserScript==
// @name         MomoYu网站样式优化(增加摸鱼友好性)
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  修改样式,个人偏好内容栏靠右,适合不适宜目光总是左撇到电脑最左边的打工人
// @author       You
// @match        https://momoyu.cc/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=momoyu.cc
// @grant        none
// @license      GPL-3.0 License
// ==/UserScript==

(function() {
    'use strict';
    document.querySelector(".my-content").style.flexDirection="row-reverse"
    document.querySelector(".side").style.marginLeft = "25px"
    let content = document.querySelector(".content")
    content.style.marginLeft = "-25px"
    content.style.marginRight = "15px"
    // Your code here...
})();