UserCSS:グラデーションテキスト
ページタイトルをグラデーションテキストにするテスト
code:style.css
.editor .line-title .text {
font-size: 24px;
font-weight: bold;
background: linear-gradient( to top,
red,
orange,
yellow,
green,
aqua,
blue,
purple,
red
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; */
background-clip: text;
color: transparent;
display:inline-block;
}
グラデーションテキスト版のレインボー記法のテストだよ
テストだよ
code:style.css
.deco-\" {
font-weight: bold;
background: linear-gradient( to right,
red,
orange,
yellow,
green,
aqua,
blue,
purple,
red
) 0% center / 200% auto ; /* グラデーション */
padding: 0.1em 0.2em 0.1em 0.2em;
animation: rainbow 4s linear infinite;
animation-direction: reverse;
background-clip: text;
color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; /* */
}
@keyframes rainbow {
to { background-position-x: 200%; }
}
https://img.shields.io/badge/UserCSS-グラデーションテキスト-1572B6.svg?logo=css3&style=for-the-badge
UserCSS.icon