2021-03-29 17:32:43 +02:00
|
|
|
:root {
|
|
|
|
--foreground-color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.forecolor {
|
|
|
|
color: var(--foreground-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.rainbow {
|
2021-03-30 18:57:50 +02:00
|
|
|
background: content-box
|
|
|
|
linear-gradient(217deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0) 70.71%),
|
|
|
|
content-box
|
|
|
|
linear-gradient(127deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0) 70.71%),
|
|
|
|
content-box
|
|
|
|
linear-gradient(336deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 70.71%),
|
|
|
|
border-box white;
|
2021-03-29 17:32:43 +02:00
|
|
|
}
|