|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Custom Directory Listing</title>
|
|
|
|
<style>
|
|
|
|
/* Add your custom styles here */
|
|
|
|
body {
|
|
|
|
font-family: 'Comic Sans MS', cursive;
|
|
|
|
margin: 20px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.index-cont{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 50px;
|
|
|
|
gap: 12.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.index-cont img{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.index-txt{
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-break{
|
|
|
|
background-color:#000000; height:1px; width:50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.return-cont{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 12.5px;
|
|
|
|
justify-content: last baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-cont{
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.folder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.2));
|
|
|
|
align-items: center;
|
|
|
|
width: 100px;
|
|
|
|
height: 200px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.folder img{
|
|
|
|
width: 50px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
a{
|
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.2));
|
|
|
|
align-items: center;
|
|
|
|
width: 100px;
|
|
|
|
height: 200px;
|
|
|
|
max-width: 100px;
|
|
|
|
max-height: 200px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file img {
|
|
|
|
width: 75px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-name {
|
|
|
|
padding-top: 12.5px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
max-width: 100px;
|
|
|
|
max-height: 50px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
document.addEventListener('contextmenu', event => {
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Dynamic Content Placeholder -->
|
|
|
|
</body>
|
|
|
|
</html>
|