Major stylesheet fix, project restructure

This commit is contained in:
Andrew Illarionov 2023-09-27 21:51:20 +03:00
parent f574205702
commit 083d862ea5
5 changed files with 21 additions and 20 deletions

View File

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 67 KiB

View File

@ -1,9 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Malware Generator</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<link rel="stylesheet" type="text/css" href="/styles.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="darkreader-lock">
<meta property="og:type" content="website">
<meta property="og:title" content="Enderman's Malware Generator v2.0">
@ -14,12 +14,13 @@
<meta property="og:image:width" content="256">
<meta property="og:image:height" content="256">
<meta property="og:image:alt" content="Warning!">
<script>
setTimeout(() => {
window.location.href = 'https://mgen.fast-dl.cc/malware.html';
}, 15000);
</script>
<title>Malware Generator</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/styles/styles.css" type="text/css" />
</head>
<body>
@ -42,5 +43,7 @@
<video class="modal-background" autoplay muted loop>
<source src="/media/malware.mp4" type="video/mp4">
</video>
<script src="/scripts/redirect.js" type="application/javascript"></script>
</body>
</html>

View File

@ -6,8 +6,8 @@
<meta name="a.validate.02" content="4zET2sKJuZpVKMTJ4quLcTpFlJo1_waSixRo" />
<title>Malware Generator</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<link rel="stylesheet" type="text/css" href="/styles.css">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="/styles/styles.css">
<meta property="og:type" content="website">
<meta property="og:title" content="Enderman's Malware Generator v2.0">

3
scripts/redirect.js Normal file
View File

@ -0,0 +1,3 @@
setTimeout(() => {
window.location.href = 'https://mgen.fast-dl.cc/malware.html';
}, 15000);

View File

@ -92,13 +92,6 @@ div.warning-modal {
text-align: center;
}
@media (min-width: 1700px) and (min-height: 600px) {
div.warning-modal {
transform: translate(-50%, -50%) scale(2);
transform-origin: 0 0 0;
}
}
a.blue {
color: #4287f5;
}
@ -109,9 +102,11 @@ a.blue {
.links {
display: flex;
flex-direction: row;
flex-wrap: wrap;
max-width: 70%;
flex-flow: row wrap;
align-items: space-around;
align-items: stretch;
justify-content: space-around;
padding: 20px;
gap: 20px;