mirror of
https://github.com/remvze/moodist.git
synced 2026-02-28 00:53:13 +08:00
17 lines
318 B
CSS
17 lines
318 B
CSS
.gradient {
|
|
width: 100%;
|
|
height: 3px;
|
|
background: linear-gradient(
|
|
90deg,
|
|
rgb(255 200 71) 3%,
|
|
rgb(254 155 70) 16%,
|
|
rgb(246 104 78) 28%,
|
|
rgb(245 92 157) 40%,
|
|
rgb(200 89 228) 52%,
|
|
rgb(98 111 234) 65%,
|
|
rgb(101 229 178) 77%,
|
|
rgb(121 232 101) 89%,
|
|
rgb(186 240 112) 100%
|
|
);
|
|
}
|