Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,143 @@
|
|
1 |
-
---
|
2 |
-
license: other
|
3 |
-
license_name: faipl
|
4 |
-
license_link: https://freedevproject.org/faipl-1.0-sd
|
5 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: faipl
|
4 |
+
license_link: https://freedevproject.org/faipl-1.0-sd
|
5 |
+
---
|
6 |
+
<style>
|
7 |
+
.title-container {
|
8 |
+
display: flex;
|
9 |
+
justify-content: center;
|
10 |
+
align-items: center;
|
11 |
+
height: 100vh; /* Adjust this value to position the title vertically */
|
12 |
+
}
|
13 |
+
|
14 |
+
.title {
|
15 |
+
font-size: 2.5em;
|
16 |
+
text-align: center;
|
17 |
+
color: #333;
|
18 |
+
font-family: 'Helvetica Neue', sans-serif;
|
19 |
+
text-transform: uppercase;
|
20 |
+
letter-spacing: 0.1em;
|
21 |
+
padding: 0.5em 0;
|
22 |
+
background: transparent;
|
23 |
+
}
|
24 |
+
|
25 |
+
.title span {
|
26 |
+
background: -webkit-linear-gradient(45deg, #bdabe3, #794bf2);
|
27 |
+
-webkit-background-clip: text;
|
28 |
+
-webkit-text-fill-color: transparent;
|
29 |
+
}
|
30 |
+
|
31 |
+
.custom-table {
|
32 |
+
table-layout: fixed;
|
33 |
+
width: 100%;
|
34 |
+
border-collapse: collapse;
|
35 |
+
margin-top: 2em;
|
36 |
+
}
|
37 |
+
|
38 |
+
.custom-table td {
|
39 |
+
width: 50%;
|
40 |
+
vertical-align: top;
|
41 |
+
padding: 10px;
|
42 |
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
|
43 |
+
}
|
44 |
+
.custom-image-container {
|
45 |
+
position: relative;
|
46 |
+
width: 100%;
|
47 |
+
margin-bottom: 0em;
|
48 |
+
overflow: hidden;
|
49 |
+
border-radius: 10px;
|
50 |
+
transition: transform .7s;
|
51 |
+
/* Smooth transition for the container */
|
52 |
+
}
|
53 |
+
.custom-image-container:hover {
|
54 |
+
transform: scale(1.05);
|
55 |
+
/* Scale the container on hover */
|
56 |
+
}
|
57 |
+
.custom-image {
|
58 |
+
width: 100%;
|
59 |
+
height: auto;
|
60 |
+
object-fit: cover;
|
61 |
+
border-radius: 10px;
|
62 |
+
transition: transform .7s;
|
63 |
+
margin-bottom: 0em;
|
64 |
+
}
|
65 |
+
.nsfw-filter {
|
66 |
+
filter: blur(8px); /* Apply a blur effect */
|
67 |
+
transition: filter 0.3s ease; /* Smooth transition for the blur effect */
|
68 |
+
}
|
69 |
+
.custom-image-container:hover .nsfw-filter {
|
70 |
+
filter: none; /* Remove the blur effect on hover */
|
71 |
+
}
|
72 |
+
|
73 |
+
.overlay {
|
74 |
+
position: absolute;
|
75 |
+
bottom: 0;
|
76 |
+
left: 0;
|
77 |
+
right: 0;
|
78 |
+
color: white;
|
79 |
+
width: 100%;
|
80 |
+
height: 40%;
|
81 |
+
display: flex;
|
82 |
+
flex-direction: column;
|
83 |
+
justify-content: center;
|
84 |
+
align-items: center;
|
85 |
+
font-size: 1vw;
|
86 |
+
font-style: bold;
|
87 |
+
text-align: center;
|
88 |
+
opacity: 0;
|
89 |
+
/* Keep the text fully opaque */
|
90 |
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
|
91 |
+
transition: opacity .5s;
|
92 |
+
}
|
93 |
+
.custom-image-container:hover .overlay {
|
94 |
+
opacity: 1;
|
95 |
+
}
|
96 |
+
.overlay-text {
|
97 |
+
background: linear-gradient(45deg, #7ed56f, #28b485);
|
98 |
+
-webkit-background-clip: text;
|
99 |
+
color: transparent;
|
100 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
|
101 |
+
|
102 |
+
.overlay-subtext {
|
103 |
+
font-size: 0.75em;
|
104 |
+
margin-top: 0.5em;
|
105 |
+
font-style: italic;
|
106 |
+
}
|
107 |
+
|
108 |
+
.overlay,
|
109 |
+
.overlay-subtext {
|
110 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
111 |
+
}
|
112 |
+
|
113 |
+
</style>
|
114 |
+
<h1 class="title">
|
115 |
+
<span>UrangDiffusion 1.0</span>
|
116 |
+
</h1>
|
117 |
+
<table class="custom-table">
|
118 |
+
<tr>
|
119 |
+
<td>
|
120 |
+
<div class="custom-image-container">
|
121 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64333a074521083b9d2aab3b/i9S9vuO_nClL-qTQpBPHT.png" alt="sample1">
|
122 |
+
</div>
|
123 |
+
<div class="custom-image-container">
|
124 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64333a074521083b9d2aab3b/tHdln16eAcps9o4kTa42L.png" alt="sample4">
|
125 |
+
</div>
|
126 |
+
</td>
|
127 |
+
<td>
|
128 |
+
<div class="custom-image-container">
|
129 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64333a074521083b9d2aab3b/J3DBFCvXWnDxImMXt_GF6.png" alt="sample2">
|
130 |
+
</div>
|
131 |
+
<div class="custom-image-container nsfw-filter">
|
132 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64333a074521083b9d2aab3b/vOHsrguBBzU15Sx6bHsFc.png" alt="sample3">
|
133 |
+
</td>
|
134 |
+
<td>
|
135 |
+
<div class="custom-image-container">
|
136 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64333a074521083b9d2aab3b/a0lTBd4h0-2nJm_uLkVxs.png" alt="sample1">
|
137 |
+
</div>
|
138 |
+
<div class="custom-image-container">
|
139 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64333a074521083b9d2aab3b/obcePlHlrj6cWbNyQWhd2.png" alt="sample4">
|
140 |
+
</div>
|
141 |
+
</td>
|
142 |
+
</tr>
|
143 |
+
</table>
|