<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<div class="screen" style="z-index: 100">
<header>
<p class="title">Version: 1.0.0</p>
<i class="fa-solid fa-xmark" style="cursor:pointer; color:#b5b5b5; font-size:30px;"></i>
</header>
<div style="display:flex; flex-direction: row; height:calc(100% - 50.5px); width:100vw; position:relative;">
<div class="main" style="overflow-y: scroll; height:100%; width:70%; position:relative;">
</div>
<div class="head-body" style="height:100%; width:30%; position:relative; background-color: #f0c032;">
<div class="heads" style="height:50%; width:100%; display: flex; flex-wrap: wrap; padding: 8px 0px; overflow-y: scroll; border-bottom: 1px solid #363636">
</div>
<div id="bodys" style="height:50%; width:100%; display: flex; flex-wrap: wrap; padding: 8px 0px; overflow-y: scroll">
</div>
</div>
</div>
</div>
</body>
</html>
<style>
*{
padding:0;
margin:0;
box-sizing: border-box;
}
.screen{
background-color: #141414;
width:100vw;
height:100vh;
}
header{
width:100vw;
padding: 5px 20px;
background-color: #050505;
display:flex;
justify-content: space-between;
flex-direction: row;
align-items: center;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.title{
color: #b5b5b5;
font-size:27px;
}
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
/*box-shadow: inset 0 0 5px grey;
border-radius: 10px;*/
background-color: #262626;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #000;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #000;
}
</style>
<script src="./script.js"></script>