UserCSS:新規作成ボタンをしいたけにする
code:style.css
.new-button {
/* --new-icon: url('/api/pages/suto3/しいたけ/icon'); /* */
--new-icon: url('/api/pages/villagepump/brand-icon/icon'); /* */
--new-button-bg:transparent;
--new-button-horizontal-color:transparent;
--new-button-vertical-color:transparent;
}
/*.new-button::before {*/
.new-button::after {
content: ''; /* */
margin: -3px -20px; /* */
width: 40px;
height: 40px;
position: absolute;
/*background-image: var(--navi-icon-B); /* */
background-image: var(--new-icon); /* */
/*background-image: var(--navi-icon-B); /* */
background-size: 40px 40px;
}
code:style.css
.new-button:hover {
animation: spin 1.5s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
https://img.shields.io/badge/UserCSS-新規作成ボタンをしいたけにする-1572B6.svg?logo=css3&style=for-the-badge
UserCSS.icon