1
0
Fork 0
mirror of https://github.com/mat-1/matdoesdev.git synced 2025-08-02 14:46:04 +00:00

try to fix css for netscape + kindle experimental browser

This commit is contained in:
mat 2024-01-07 17:31:47 -06:00
parent e4ba97923e
commit 42efe73ae0

View file

@ -169,7 +169,6 @@
h1 {
background: linear-gradient(0deg, #aaa, #fff);
/* fallback */
background-color: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
@ -177,6 +176,12 @@
text-align: center;
}
@supports (-webkit-background-clip: text) {
h1 {
background-color: #fff;
}
}
#sections {
width: 100%;
}