Display server health check dashboard
by velo_ninja
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>⚙️ Performance Dashboard</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #2a2b35;
color: #ffffff;
margin: 0;
padding: 40px;
}
h1 {
font-size: 32px;
margin-bottom: 30px;
color: #00d8ff;
text-align: center;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.card {
background-color: #353746;
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s;
position: relative;
}
.card:hover {
background-color: #464b5b;
}
.card-title {
font-weight: 600;
font-size: 20px;
color: #ffffff;
}
.card-value {
font-size: 20px;
color: #66ff99;
font-family: "Courier New", Courier, monospace;
margin-top: 8px;
}
.button {
background-color: #00d8ff;
color: #ffffff;
padding: 12px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 18px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #008ba3;
}
.progress-bar {
background-color: #444;
border-radius: 10px;
width: 100%;
height: 20px;
margin-top: 15px;
overflow: hidden;
}
.progress {
background-color: #00d8ff;
height: 100%;
border-radius: 10px;
width: 0;
transition: width 0.3s, background-color 0.3s;
}
.status {
margin-top: 20px;
font-size: 16px;
color: #b5b5b5;
text-align: center;
}
.description {
...