mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
18 lines
308 B
CSS
18 lines
308 B
CSS
.gradient {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 5px;
|
|
background: linear-gradient(90deg, #fcb0f3, #5b27ec);
|
|
|
|
&::before {
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: inherit;
|
|
content: '';
|
|
filter: blur(10px);
|
|
}
|
|
}
|