KidiXDev commited on
Commit
93a846d
·
2 Parent(s): 377c640 8c1ed55

Merge branch 'main' of https://huggingface.co/KidiXDev/sakumomoXL

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -16,9 +16,26 @@ tags:
16
  }
17
 
18
  .title span {
19
- background: -webkit-linear-gradient(66deg, #00a6de, #9b70ff);
 
 
 
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{