generated at
UserCSS:背景画像
公式サイトに記載があった。
stylexx.css
body { background-color: WhiteSmoke; background-image: url("https://i.gyazo.com/de07fbaab5c961dc7fd3720ba956bbd3.png"); background-repeat: no-repeat; background-attachment: fixed; background-position: right top }

固定モード
style.css
body { background-color: WhiteSmoke; background-image: url("https://i.gyazo.com/de07fbaab5c961dc7fd3720ba956bbd3.png"); /* background-image: url("https://i.gyazo.com/de07fbaab5c961dc7fd3720ba956bbd3.png") !important; */ background-repeat: no-repeat; background-attachment: fixed; background-position: right top ; background-size: auto; }

ワイドモード
style.css
body { background-image: url("https://i.gyazo.com/de07fbaab5c961dc7fd3720ba956bbd3.png"); background-repeat: repeat-y; background-attachment: scroll; background-position: center top ; background-size: 100% auto; /* 横幅を100%にして算出 */ }

stylexx.css
body { background: url('/api/pages/suto3/background-image/icon'); background-repeat: repeat-y; background-attachment: scroll; background-position: center top ; background-size: 100% auto; /* 横幅を100%にして算出 */ }

UserCSS