INSPECTOR-GADGET 1.0

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>Inspector Scan Summary Visualization</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
    <style>
    body {
        background: #79a0cb;
        font-family: Arial, sans-serif;
        color: #fff;
        margin: 20px;
    }

    h1 {
        text-align: center;
        color: #333;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .summary-box {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        margin: 10px;
        width: 80%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: #333;
    }

    .summary-box:last-child {
        background-color: #FFA500; /* Orange background color */
    }

    .summary-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .summary-content {
        margin-left: 20px;
    }

    .element-list, .depth-list, .type-list {
        list-style: none;
        padding: 0;
    }

    .element-item, .depth-item, .type-item {
        margin: 5px 0;
        padding: 5px;
        border-bottom: 1px solid #eee;
    }

    .element-item:last-child, .depth-item:last-child, .type-item:last-child {
        border-bottom: none;
    }

    .element-id {
        color: #007BFF;
        font-weight: bold;
    }

    .element-type {
        color: #28A745;
    }

    .depth-level {
        color: #FFC107;
    }

    .menu {
        width: 300px;
        margin: auto;
    }

    .tree {
        list-style: none;
        padding-left: 20px;
        position: relative;
        color: #fff;
    }

    .tree:before {
        content: '';
        width: 1px;
        background: #fff;
        top: 0;
        bottom: 7px;
        left: 0;
        position:...