Merge branch 'main' of https://huggingface.co/KidiXDev/sakumomoXL
Browse files
README.md
CHANGED
@@ -16,9 +16,26 @@ tags:
|
|
16 |
}
|
17 |
|
18 |
.title span {
|
19 |
-
|
|
|
|
|
|
|
20 |
-webkit-background-clip: text;
|
21 |
-webkit-text-fill-color: transparent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
|
24 |
.sample-image{
|
|
|
16 |
}
|
17 |
|
18 |
.title span {
|
19 |
+
font-family: Arial, sans-serif;
|
20 |
+
background: linear-gradient(90deg, red, green, blue);
|
21 |
+
background-size: 300% 300%;
|
22 |
+
color: transparent;
|
23 |
-webkit-background-clip: text;
|
24 |
-webkit-text-fill-color: transparent;
|
25 |
+
background-clip: text;
|
26 |
+
animation: gradient-animation 6s linear infinite;
|
27 |
+
}
|
28 |
+
|
29 |
+
@keyframes gradient-animation {
|
30 |
+
0% {
|
31 |
+
background-position: 0% 0%;
|
32 |
+
}
|
33 |
+
50% {
|
34 |
+
background-position: 100% 100%;
|
35 |
+
}
|
36 |
+
100% {
|
37 |
+
background-position: 0% 0%;
|
38 |
+
}
|
39 |
}
|
40 |
|
41 |
.sample-image{
|