MAL-Character Renders in the Side + Custom Scrollbar

Charcter Renders and Custom Scrollbar for MyAnimelist

当前为 2021-06-28 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name         MAL-Character Renders in the Side + Custom Scrollbar
@version      1.2.0
@description  Charcter Renders and Custom Scrollbar for MyAnimelist
@namespace    jery_js
@author       Jery

// This CSS script is meant to be used using "stylus" extension. Other extensions haven't been tenssted yet.
// My MAL Profile - https://myanimelist.net/profile/jery_js  

==/UserStyle== */

@-moz-document domain("myanimelist.net") {
      /*To Change the Colors for the scrollbar, or the characters, just change the variable's values below.*/
      
:root {
	--clr1: #004dff;	/* Scrollbar thumb */
	--clr2: #444;		/* Scrollbar background */
	
	--char1: url(https://i.ibb.co/Yf43vM3/Rem.webp);	/* Rem */
	--char2: url(https://i.ibb.co/12ZCzrr/Ram.webp);	/* Ram */
	/* To change the characters, just replace the urls with the urls for the characters u want (recommended-1400x2200 px) */
}

/*	Side Renders	*/
body:not(.ownlist) {
	background-color: white;
	background-image: var(--char1), var(--char2);
	background-position-x: -190px, 1045px;
	background-position-y: -1px, -15px;
	min-height: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: auto 105%;
}

/*	Border	 */
body.page-common #myanimelist {
	border: groove #2e51a2 3px;
	border-top-width: 0px;
}



/*-------------------------------*\
|        CUSTOM SCROLLBAR         |
\*------------------------------*/
/* Firefox */
* {
	scrollbar-color: var(--clr1) var(--clr2);
}

/* Chrome */
body:not(.ownlist)::-webkit-scrollbar  {
	background: var(--clr2);
}

body:not(.ownlist)::-webkit-scrollbar-button:vertical {
	background: transparent center / 10px auto no-repeat;
}
body:not(.ownlist)::-webkit-scrollbar-button:vertical:start {
	background-image: url(https://i.imgur.com/Cu2u9Hu.png);
}
body:not(.ownlist)::-webkit-scrollbar-button:vertical:end {
	background-image: url(https://i.imgur.com/0YI7VxA.png);
}
body:not(.ownlist)::-webkit-scrollbar-button:horizontal {
	background: transparent center / auto 10px no-repeat;
}
body:not(.ownlist)::-webkit-scrollbar-button:horizontal:start {
	background-image: url(https://i.imgur.com/BArw1oI.png);
}
body:not(.ownlist)::-webkit-scrollbar-button:horizontal:end {
	background-image: url(https://i.imgur.com/vqOtoms.png);
}
body:not(.ownlist)::-webkit-scrollbar-corner {
	background: var(--clr2);
}

body:not(.ownlist)::-webkit-scrollbar-thumb {
	background: var(--clr1) content-box;
	border: 0 solid transparent;
}
body:not(.ownlist)::-webkit-scrollbar-thumb:vertical {
	border-width: 0 2px;
}
body:not(.ownlist)::-webkit-scrollbar-thumb:horizontal {
	border-width: 2px 0;
}
body:not(.ownlist)::-webkit-scrollbar-thumb:hover {
	background-color: #004dffe8;
}
body:not(.ownlist)::-webkit-scrollbar-track {
	width: 5px;
}

/*------------------------E-N-D-*/
}