Major stylesheet fix, project restructure
This commit is contained in:
parent
f574205702
commit
083d862ea5
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 67 KiB |
19
index.html
19
index.html
|
@ -1,9 +1,9 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Malware Generator</title>
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<link rel="stylesheet" type="text/css" href="/styles.css">
|
<meta name="darkreader-lock">
|
||||||
|
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
<meta property="og:title" content="Enderman's Malware Generator v2.0">
|
<meta property="og:title" content="Enderman's Malware Generator v2.0">
|
||||||
|
@ -15,11 +15,12 @@
|
||||||
<meta property="og:image:height" content="256">
|
<meta property="og:image:height" content="256">
|
||||||
<meta property="og:image:alt" content="Warning!">
|
<meta property="og:image:alt" content="Warning!">
|
||||||
|
|
||||||
<script>
|
<title>Malware Generator</title>
|
||||||
setTimeout(() => {
|
|
||||||
window.location.href = 'https://mgen.fast-dl.cc/malware.html';
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
||||||
}, 15000);
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||||
</script>
|
|
||||||
|
<link rel="stylesheet" href="/styles/styles.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -42,5 +43,7 @@
|
||||||
<video class="modal-background" autoplay muted loop>
|
<video class="modal-background" autoplay muted loop>
|
||||||
<source src="/media/malware.mp4" type="video/mp4">
|
<source src="/media/malware.mp4" type="video/mp4">
|
||||||
</video>
|
</video>
|
||||||
|
|
||||||
|
<script src="/scripts/redirect.js" type="application/javascript"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -6,8 +6,8 @@
|
||||||
<meta name="a.validate.02" content="4zET2sKJuZpVKMTJ4quLcTpFlJo1_waSixRo" />
|
<meta name="a.validate.02" content="4zET2sKJuZpVKMTJ4quLcTpFlJo1_waSixRo" />
|
||||||
|
|
||||||
<title>Malware Generator</title>
|
<title>Malware Generator</title>
|
||||||
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||||
<link rel="stylesheet" type="text/css" href="/styles.css">
|
<link rel="stylesheet" type="text/css" href="/styles/styles.css">
|
||||||
|
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
<meta property="og:title" content="Enderman's Malware Generator v2.0">
|
<meta property="og:title" content="Enderman's Malware Generator v2.0">
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
setTimeout(() => {
|
||||||
|
window.location.href = 'https://mgen.fast-dl.cc/malware.html';
|
||||||
|
}, 15000);
|
|
@ -92,13 +92,6 @@ div.warning-modal {
|
||||||
text-align: center;
|
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 {
|
a.blue {
|
||||||
color: #4287f5;
|
color: #4287f5;
|
||||||
}
|
}
|
||||||
|
@ -109,9 +102,11 @@ a.blue {
|
||||||
|
|
||||||
.links {
|
.links {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
max-width: 70%;
|
max-width: 70%;
|
||||||
flex-flow: row wrap;
|
align-items: stretch;
|
||||||
align-items: space-around;
|
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
gap: 20px;
|
gap: 20px;
|
Loading…
Reference in New Issue