You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
1.8 KiB

9 months ago
<!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;
9 months ago
margin: 20px;
display: flex;
flex-direction: column;
9 months ago
}
.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%;
}
9 months ago
.return-cont{
display: flex;
flex-direction: row;
gap: 12.5px;
justify-content: last baseline;
}
9 months ago
.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 {
9 months ago
min-width: 50px;
max-width: 75px;
height: auto;
}
9 months ago
.info-name {
padding-top: 12.5px;
flex-wrap: wrap;
9 months ago
text-wrap: wrap;
overflow-wrap: break-word;
overflow: hidden;
max-width: 100px;
9 months ago
max-height: 100px;
}
</style>
<script>
document.addEventListener('contextmenu', event => {
event.preventDefault();
});
</script>
</head>
<body>
<!-- Dynamic Content Placeholder -->
9 months ago
</body>
</html>