Spaces:
Running
Running
Upload index.html
Browse files- index.html +45 -1
index.html
CHANGED
|
@@ -49,7 +49,7 @@
|
|
| 49 |
.header h1 {
|
| 50 |
font-size: 28px;
|
| 51 |
font-weight: 700;
|
| 52 |
-
margin-bottom:
|
| 53 |
background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
|
| 54 |
-webkit-background-clip: text;
|
| 55 |
-webkit-text-fill-color: transparent;
|
|
@@ -57,6 +57,41 @@
|
|
| 57 |
text-align: center;
|
| 58 |
}
|
| 59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
.controls {
|
| 61 |
display: flex;
|
| 62 |
flex-wrap: wrap;
|
|
@@ -645,6 +680,15 @@
|
|
| 645 |
<div class="header">
|
| 646 |
<h1>π¨ Mal's Models</h1>
|
| 647 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 648 |
<div class="controls">
|
| 649 |
<div class="search-container">
|
| 650 |
<input
|
|
|
|
| 49 |
.header h1 {
|
| 50 |
font-size: 28px;
|
| 51 |
font-weight: 700;
|
| 52 |
+
margin-bottom: 12px;
|
| 53 |
background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
|
| 54 |
-webkit-background-clip: text;
|
| 55 |
-webkit-text-fill-color: transparent;
|
|
|
|
| 57 |
text-align: center;
|
| 58 |
}
|
| 59 |
|
| 60 |
+
.profile-links {
|
| 61 |
+
display: flex;
|
| 62 |
+
flex-wrap: wrap;
|
| 63 |
+
gap: 16px;
|
| 64 |
+
justify-content: center;
|
| 65 |
+
align-items: center;
|
| 66 |
+
margin-bottom: 12px;
|
| 67 |
+
padding: 12px;
|
| 68 |
+
background: rgba(15, 23, 42, 0.4);
|
| 69 |
+
border-radius: 8px;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
.profile-links a {
|
| 73 |
+
display: inline-flex;
|
| 74 |
+
align-items: center;
|
| 75 |
+
gap: 6px;
|
| 76 |
+
padding: 6px 12px;
|
| 77 |
+
background: rgba(96, 165, 250, 0.1);
|
| 78 |
+
border-radius: 6px;
|
| 79 |
+
font-size: 14px;
|
| 80 |
+
transition: all 0.2s;
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
.profile-links a:hover {
|
| 84 |
+
background: rgba(96, 165, 250, 0.2);
|
| 85 |
+
transform: translateY(-1px);
|
| 86 |
+
}
|
| 87 |
+
|
| 88 |
+
.last-update {
|
| 89 |
+
text-align: center;
|
| 90 |
+
font-size: 13px;
|
| 91 |
+
color: #94a3b8;
|
| 92 |
+
margin-bottom: 16px;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
.controls {
|
| 96 |
display: flex;
|
| 97 |
flex-wrap: wrap;
|
|
|
|
| 680 |
<div class="header">
|
| 681 |
<h1>π¨ Mal's Models</h1>
|
| 682 |
|
| 683 |
+
<div class="profile-links">
|
| 684 |
+
<a href="https://civitai.com/user/malcolmrey" target="_blank">π¨ CivitAI</a>
|
| 685 |
+
<a href="https://huggingface.com/malcolmrey" target="_blank">π€ HuggingFace</a>
|
| 686 |
+
<a href="https://buymeacoffee.com/malcolmrey" target="_blank">β BuyMeACoffee</a>
|
| 687 |
+
<a href="https://reddit.com/r/malcolmrey" target="_blank">π¬ Reddit</a>
|
| 688 |
+
</div>
|
| 689 |
+
|
| 690 |
+
<div class="last-update">Last updated: 2025.11.02</div>
|
| 691 |
+
|
| 692 |
<div class="controls">
|
| 693 |
<div class="search-container">
|
| 694 |
<input
|