ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 26,941
- Points
- 823
Reputation:
2.3.0 Beta 3
Hello, what am I doing wrong in the code below? System is not working, Dark is not working.
CSS:
Read more
Continue reading...
Hello, what am I doing wrong in the code below? System is not working, Dark is not working.
CSS:
Code:
:root {
--my-gradient: linear-gradient(135deg, #2d3393, #22bcdc); /* define gradient variable */
}
@media (prefers-color-scheme: dark) {
:root {
--my-gradient: linear-gradient(135deg, #1B2129, #1B2129);
}
}
html[data-variation="alternate"] {
:root {
--my-gradient: linear-gradient(135deg, #1B2129, #1B2129);
}
}
.p-pageWrapper {
z-index: 0;
}...
Read more
Continue reading...