predatortoabuse
commited on
Commit
•
e240cb3
1
Parent(s):
e352f8b
Update index.html
Browse files- index.html +34 -1
index.html
CHANGED
@@ -4,10 +4,13 @@
|
|
4 |
<head>
|
5 |
<meta charset="utf-8" />
|
6 |
<meta name="viewport" content="width=device-width" />
|
7 |
-
<title>Stable Diffusion 3
|
|
|
|
|
8 |
<style>
|
9 |
body {
|
10 |
margin: 0;
|
|
|
11 |
}
|
12 |
.fullframe {
|
13 |
max-width: 100%;
|
@@ -20,6 +23,33 @@
|
|
20 |
min-width: 100%;
|
21 |
min-height: 100%;
|
22 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
</style>
|
24 |
</head>
|
25 |
|
@@ -28,6 +58,9 @@
|
|
28 |
<iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://stabilityai-stable-diffusion-3-medium.hf.space/">
|
29 |
</iframe>
|
30 |
</div>
|
|
|
|
|
|
|
31 |
</body>
|
32 |
|
33 |
</html>
|
|
|
4 |
<head>
|
5 |
<meta charset="utf-8" />
|
6 |
<meta name="viewport" content="width=device-width" />
|
7 |
+
<title>Stable Diffusion 3.15</title>
|
8 |
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
9 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
10 |
<style>
|
11 |
body {
|
12 |
margin: 0;
|
13 |
+
font-family: 'Poppins', sans-serif;
|
14 |
}
|
15 |
.fullframe {
|
16 |
max-width: 100%;
|
|
|
23 |
min-width: 100%;
|
24 |
min-height: 100%;
|
25 |
}
|
26 |
+
.floating-button {
|
27 |
+
position: fixed;
|
28 |
+
bottom: 20px;
|
29 |
+
right: 20px;
|
30 |
+
background-color: #501aad;
|
31 |
+
color: white;
|
32 |
+
padding: 15px 25px;
|
33 |
+
border: none;
|
34 |
+
border-radius: 10px;
|
35 |
+
font-size: 16px;
|
36 |
+
font-weight: bold;
|
37 |
+
cursor: pointer;
|
38 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
39 |
+
transition: background-color 0.3s, box-shadow 0.3s;
|
40 |
+
text-decoration: none;
|
41 |
+
font-family: 'Poppins', sans-serif;
|
42 |
+
display: flex;
|
43 |
+
align-items: center;
|
44 |
+
justify-content: center;
|
45 |
+
}
|
46 |
+
.floating-button:hover {
|
47 |
+
background-color: darkviolet;
|
48 |
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
|
49 |
+
}
|
50 |
+
.floating-button i {
|
51 |
+
margin-right: 10px;
|
52 |
+
}
|
53 |
</style>
|
54 |
</head>
|
55 |
|
|
|
58 |
<iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://stabilityai-stable-diffusion-3-medium.hf.space/">
|
59 |
</iframe>
|
60 |
</div>
|
61 |
+
<a href="https://discord.com/invite/qq27GRjZ" class="floating-button">
|
62 |
+
<i class="fab fa-discord"></i> Join Our Discord
|
63 |
+
</a>
|
64 |
</body>
|
65 |
|
66 |
</html>
|