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>
|
||||
<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">
|
||||
|
@ -15,11 +15,12 @@
|
|||
<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>
|
|
@ -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">
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
@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;
|
Loading…
Reference in New Issue