predator
commited on
Update index.html
Browse files- index.html +30 -1
index.html
CHANGED
|
@@ -23,7 +23,33 @@
|
|
| 23 |
min-width: 100%;
|
| 24 |
min-height: 100%;
|
| 25 |
}
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
</style>
|
| 28 |
</head>
|
| 29 |
|
|
@@ -32,6 +58,9 @@
|
|
| 32 |
<iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://artificialguybr-realvisxl-free-demo.hf.space">
|
| 33 |
</iframe>
|
| 34 |
</div>
|
|
|
|
|
|
|
|
|
|
| 35 |
</body>
|
| 36 |
|
| 37 |
</html>
|
|
|
|
| 23 |
min-width: 100%;
|
| 24 |
min-height: 100%;
|
| 25 |
}
|
| 26 |
+
.floating-button {
|
| 27 |
+
position: fixed;
|
| 28 |
+
bottom: 30px;
|
| 29 |
+
left: 20px;
|
| 30 |
+
background-color: #dbdad7;
|
| 31 |
+
color: black;
|
| 32 |
+
padding: 15px 25px;
|
| 33 |
+
border: none;
|
| 34 |
+
border-radius: 10px;
|
| 35 |
+
font-size: 13px;
|
| 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: #dbdad7;
|
| 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://artificialguybr-realvisxl-free-demo.hf.space">
|
| 59 |
</iframe>
|
| 60 |
</div>
|
| 61 |
+
<a href="https://discord.com/invite/qq27GRjZ" class="floating-button" target="_blank">
|
| 62 |
+
<i class="fab fa-discord"></i> Discord
|
| 63 |
+
</a>
|
| 64 |
</body>
|
| 65 |
|
| 66 |
</html>
|