Flux-web / index.html
GarGerry's picture
Update index.html
e762863 verified
raw
history blame
2.88 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Futuristic Stock Bot</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<style>
body {
padding: 2rem;
font-family: "Orbitron", "Arial", sans-serif;
background: radial-gradient(circle, #0f2027, #203a43, #2c5364);
color: #e0e0e0;
margin: 0;
}
h1 {
font-size: 24px;
margin-top: 0;
color: #00eaff;
text-transform: uppercase;
text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff;
text-align: center;
}
p {
color: #b0bec5;
font-size: 16px;
margin-bottom: 10px;
margin-top: 5px;
line-height: 1.6;
}
.card {
max-width: 620px;
margin: 0 auto;
padding: 20px;
border: 1px solid rgba(0, 255, 255, 0.3);
border-radius: 16px;
background: linear-gradient(145deg, #112233, #334455);
box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.1);
text-align: center;
}
.card:hover {
box-shadow: 0 8px 30px rgba(0, 255, 255, 0.7), inset 0 0 20px rgba(0, 255, 255, 0.2);
transform: scale(1.02);
transition: all 0.3s ease;
}
.card p:last-child {
margin-bottom: 0;
}
button {
display: block;
margin: 20px auto 0;
padding: 12px 24px;
font-size: 14px;
color: #00eaff;
background: transparent;
border: 2px solid #00eaff;
border-radius: 8px;
cursor: pointer;
text-transform: uppercase;
box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 255, 255, 0.5);
transition: all 0.3s ease;
}
button:hover {
background: #00eaff;
color: #0f2027;
box-shadow: 0 0 20px #00eaff, 0 0 30px rgba(0, 255, 255, 0.7);
}
iframe {
width: 100%;
height: 400px;
border: none;
border-radius: 16px;
margin-top: 20px;
box-shadow: 0 4px 15px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.2);
}
</style>
</head>
<body>
<h1>Futuristic Stock Bot</h1>
<div class="card">
<p>Welcome to the Futuristic Stock Bot interface.</p>
<p>Stay ahead with real-time stock updates and futuristic design!</p>
<button>Explore Stocks</button>
<iframe src="https://fnkffp.vercel.app/" allowfullscreen></iframe>
</div>
</body>
</html>