CN-Repeater 1.01

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">
    
    <style>
        .menuDiv {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translate(-50%);
            width: 50vw;
            height: 3vh;
            overflow: auto;
            background-color: rgba(200, 120, 220, 0.8);
            margin-top: 1%;
            margin-bottom: 1%;
            display: flex;
            align-items: center;
			      justify-content: center;
            flex-wrap: wrap;  
            border-radius: 15px 15px 0 0;
        }
    </style>
       
    <style>
        body {
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100vw;
            height: 100vh;
            background-color: white;
        }

        .divMainContainer {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 98vw;
            height: 90vh;
            overflow: auto;
            background-color: rgba(200, 120, 220, 0.8);
            margin-top: 1%;
            margin-bottom: 1%;
            border-radius: 15px;
            padding: 25px 0px 25px 0px;
          }
              .divItem {
            width: 90vw;
            height: auto;
            min-height: 8vh;
            margin: auto;
            margin-top: 0.5%;
            padding: 10px;
            border: 2px solid #ccc;
            border-radius: 5px;
            position: relative;
            background: rgba(150, 150, 150, 0.7);
            transition: background-color 0.5s, color 0.8s;
            cursor: pointer;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
          }

        .divItem:hover {
            background-color: rgba(100, 150, 250,...