Raelina commited on
Commit
d77ba57
1 Parent(s): c18d49f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +162 -1
README.md CHANGED
@@ -7,6 +7,7 @@ language:
7
  tags:
8
  - text-to-image
9
  - stable-diffusion
 
10
  - safetensors
11
  - stable-diffusion-xl
12
  base_model: cagliostrolab/animagine-xl-3.1
@@ -35,13 +36,173 @@ base_model: cagliostrolab/animagine-xl-3.1
35
  -webkit-background-clip: text;
36
  -webkit-text-fill-color: transparent;
37
  }
38
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  </style>
40
 
41
  <h1 class="title">
42
  <span>Raena XL</span>
43
  </h1>
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  **Raena XL** is a merged model that focused in 2D Anime
46
 
47
  ## Model Details
 
7
  tags:
8
  - text-to-image
9
  - stable-diffusion
10
+ - 2D
11
  - safetensors
12
  - stable-diffusion-xl
13
  base_model: cagliostrolab/animagine-xl-3.1
 
36
  -webkit-background-clip: text;
37
  -webkit-text-fill-color: transparent;
38
  }
39
+ .title {
40
+ font-size: 2.5em;
41
+ text-align: center;
42
+ color: #333;
43
+ font-family: 'Helvetica Neue', sans-serif;
44
+ text-transform: uppercase;
45
+ letter-spacing: 0.1em;
46
+ padding: 0.5em 0;
47
+ background: transparent;
48
+ }
49
+
50
+ .title span {
51
+ background: -webkit-linear-gradient(45deg, #2196f3, #f44336);
52
+ -webkit-background-clip: text;
53
+ -webkit-text-fill-color: transparent;
54
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
55
+ font-family: 'Andale Mono', monospace;
56
+ }
57
+
58
+ .custom-table {
59
+ table-layout: fixed;
60
+ width: 100%;
61
+ border-collapse: collapse;
62
+ margin-top: 2em;
63
+ }
64
+
65
+ .custom-table td {
66
+ width: 50%;
67
+ vertical-align: top;
68
+ padding: 10px;
69
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
70
+ }
71
+
72
+ .custom-image-container {
73
+ position: relative;
74
+ width: 100%;
75
+ margin-bottom: 0em;
76
+ overflow: hidden;
77
+ border-radius: 10px;
78
+ transition: transform .7s;
79
+ }
80
+
81
+ .custom-image-container:hover {
82
+ transform: scale(1.05);
83
+ }
84
+
85
+ .custom-image {
86
+ width: 100%;
87
+ height: auto;
88
+ object-fit: cover;
89
+ border-radius: 10px;
90
+ transition: transform .7s;
91
+ margin-bottom: 0em;
92
+ }
93
+
94
+ .nsfw-filter {
95
+ filter: blur(8px);
96
+ transition: filter 0.3s ease;
97
+ }
98
+
99
+ .custom-image-container:hover .nsfw-filter {
100
+ filter: none;
101
+ }
102
+
103
+ .overlay {
104
+ position: absolute;
105
+ bottom: 0;
106
+ left: 0;
107
+ right: 0;
108
+ color: white;
109
+ width: 100%;
110
+ height: 40%;
111
+ display: flex;
112
+ flex-direction: column;
113
+ justify-content: center;
114
+ align-items: center;
115
+ font-size: 1vw;
116
+ font-style: bold;
117
+ text-align: center;
118
+ opacity: 0;
119
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
120
+ transition: opacity .5s;
121
+ }
122
+
123
+ .custom-image-container:hover .overlay {
124
+ opacity: 1;
125
+ }
126
+
127
+ .overlay-text {
128
+ background: linear-gradient(45deg, #7ed56f, #28b485);
129
+ -webkit-background-clip: text;
130
+ color: transparent;
131
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
132
+ }
133
+
134
+ .overlay-subtext {
135
+ font-size: 0.75em;
136
+ margin-top: 0.5em;
137
+ font-style: italic;
138
+ }
139
+
140
+ .overlay,
141
+ .overlay-subtext {
142
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
143
+ }
144
  </style>
145
 
146
  <h1 class="title">
147
  <span>Raena XL</span>
148
  </h1>
149
 
150
+ <table class="custom-table">
151
+ <tr>
152
+ <td>
153
+ <div class="custom-image-container">
154
+ <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/qcSogOFhjnO99hp5pL6NR.png" alt="Sample Image 1">
155
+ <div class="overlay">
156
+ <div class="overlay-text">Sample Image</div>
157
+ </div>
158
+ </div>
159
+ </td>
160
+ <td>
161
+ <div class="custom-image-container">
162
+ <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/T3XKGPAPvnBdJX7qEasRn.png" alt="Sample Image 2">
163
+ <div class="overlay">
164
+ <div class="overlay-text">Sample Image</div>
165
+ </div>
166
+ </div>
167
+ </td>
168
+ <td>
169
+ <div class="custom-image-container">
170
+ <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/GZ459ZfvoCPmDX4p8dROU.png" alt="Sample Image 3">
171
+ <div class="overlay">
172
+ <div class="overlay-text">Sample Image</div>
173
+ </div>
174
+ </div>
175
+ </td>
176
+ </tr>
177
+ <tr>
178
+ <td>
179
+ <div class="custom-image-container">
180
+ <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/efG_LznVM2jcmkOj8Xkxr.png" alt="Sample Image 4">
181
+ <div class="overlay">
182
+ <div class="overlay-text">Sample Image</div>
183
+ </div>
184
+ </div>
185
+ </td>
186
+ <td>
187
+ <div class="custom-image-container">
188
+ <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/QYTuT3525f1DMAu80SMIA.png" alt="Sample Image 5">
189
+ <div class="overlay">
190
+ <div class="overlay-text">Sample Image</div>
191
+ </div>
192
+ </div>
193
+ </td>
194
+ <td>
195
+ <div class="custom-image-container">
196
+ <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/pfR1Xoe2bEDtC1QvnIPrr.png" alt="Sample Image 6">
197
+ <div class="overlay">
198
+ <div class="overlay-text">Sample Image</div>
199
+ </div>
200
+ </div>
201
+ </td>
202
+ </tr>
203
+ </table>
204
+
205
+
206
  **Raena XL** is a merged model that focused in 2D Anime
207
 
208
  ## Model Details