predatortoabuse
commited on
Update index.html
Browse files- index.html +32 -2
index.html
CHANGED
@@ -23,7 +23,35 @@
|
|
23 |
min-width: 100%;
|
24 |
min-height: 100%;
|
25 |
}
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
</style>
|
28 |
</head>
|
29 |
|
@@ -32,7 +60,9 @@
|
|
32 |
<iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://markmagic-stable-diffusion-3.hf.space">
|
33 |
</iframe>
|
34 |
</div>
|
35 |
-
|
|
|
|
|
36 |
</body>
|
37 |
|
38 |
</html>
|
|
|
23 |
min-width: 100%;
|
24 |
min-height: 100%;
|
25 |
}
|
26 |
+
|
27 |
+
.floating-button {
|
28 |
+
position: fixed;
|
29 |
+
bottom: 30px;
|
30 |
+
left: 20px;
|
31 |
+
background-color: #dbdad7;
|
32 |
+
color: black;
|
33 |
+
padding: 15px 25px;
|
34 |
+
border: none;
|
35 |
+
border-radius: 10px;
|
36 |
+
font-size: 13px;
|
37 |
+
font-weight: bold;
|
38 |
+
cursor: pointer;
|
39 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
40 |
+
transition: background-color 0.3s, box-shadow 0.3s;
|
41 |
+
text-decoration: none;
|
42 |
+
font-family: 'Poppins', sans-serif;
|
43 |
+
display: flex;
|
44 |
+
align-items: center;
|
45 |
+
justify-content: center;
|
46 |
+
}
|
47 |
+
.floating-button:hover {
|
48 |
+
background-color: #dbdad7;
|
49 |
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
|
50 |
+
}
|
51 |
+
.floating-button i {
|
52 |
+
margin-right: 10px;
|
53 |
+
}
|
54 |
+
|
55 |
</style>
|
56 |
</head>
|
57 |
|
|
|
60 |
<iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://markmagic-stable-diffusion-3.hf.space">
|
61 |
</iframe>
|
62 |
</div>
|
63 |
+
<a href="https://discord.com/invite/qq27GRjZ" class="floating-button">
|
64 |
+
<i class="fab fa-discord"></i>Discord
|
65 |
+
</a>
|
66 |
</body>
|
67 |
|
68 |
</html>
|