Codesss
Codesss
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SCORPION STREAMER PANEL</title>
<style>
/* Resetting default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Glowing box */
.box {
margin-top: 5rem;
padding: 2rem;
background-color: rgba(0, 0, 0, 0.8);
border: 2px solid #ff0000;
box-shadow: 0 0 15px #ff0000, 0 0 25px #ff0000;
text-align: center;
width: 80%;
max-width: 600px;
}
/* Tab-like buttons */
.tab-buttons {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}
.tab-button {
padding: 1rem 2rem;
border: red;
background-color: red;
color: white;
font-size: 1.2rem;
margin: 0 0.7rem;
border-radius: 100px 100px; /* Rounded top corners */
cursor: pointer;
box-shadow: 0 0 120px #ff0000, 0 0 100px #ff0000, 0 0 26px #ff0000;
transition: all 0.3s ease;
}
/* Glowing buttons */
.glow-button {
padding: 1rem 2rem;
border: none;
background-color: black;
color: white;
font-size: 1.2rem;
margin: 1.1rem;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 0 15px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000;
transition: all 0.3s ease;
}
.glow-button:hover {
box-shadow: 0 0 15px #ffff, 0 0 30px #ffff, 0 0 40px #ffff;
}
/* Log box */
.log-box {
margin-top: 2rem;
padding: 1rem;
background-color: rgba(0, 0, 0, 0.8);
border: 1px solid #ff0000;
height: 200px;
width: 100%;
max-width: 600px;
overflow-y: auto;
box-shadow: 0 0 10px #ff0000;
}
.log-entry {
color: #fff;
padding: 0.5rem;
border-bottom: 1px solid #ff0000;
}
.log-box {
height: 150px;
}
.tab-button {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.glow-button {
font-size: 0.9rem;
padding: 0.8rem 1.5rem;
}
.log-box {
height: 120px;
}
.tab-button {
font-size: 0.9rem;
padding: 0.5rem 1rem;
}
}
</style>
</head>
<body>
<div class="glow-separator"></div>
<script>
function showTab(tabName) {
const tabs = document.querySelectorAll('.tab-content');
tabs.forEach(tab => tab.style.display = 'none'); // Hide all tabs
document.getElementById(tabName).style.display = 'block'; // Show selected
tab
}
function addLog(message) {
const logEntries = document.getElementById('logEntries');