Add files from old Git

This commit is contained in:
Simon V. Lejel 2021-12-28 00:08:19 +01:00
commit d824c67bb4
8 changed files with 57 additions and 0 deletions

3
.gitattributes vendored Normal file
View file

@ -0,0 +1,3 @@
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text

21
LICENSE Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2020 Web Dev Team
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# Blocked Domain Page
The page to show when a blocked domain has been requested.

4
css/styles.css Normal file
View file

@ -0,0 +1,4 @@
body {
background-image: url("../img/background.jpg");
background-size: cover;
}/*# sourceMappingURL=styles.css.map */

1
css/styles.css.map Normal file
View file

@ -0,0 +1 @@
{"version":3,"sources":["styles.scss"],"names":[],"mappings":"AAAA;EACI,8CAAA;EACA,sBAAA;AACJ","file":"styles.css"}

4
css/styles.scss Normal file
View file

@ -0,0 +1,4 @@
body {
background-image: url("../img/background.jpg");
background-size: cover;
}

18
index.html Normal file
View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="da">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/icon.png">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<title>Blocked Page - DCSL.dk</title>
<script src="js/script.js"></script>
</head>
<body>
<div id="content">
<h1>You are not allowed to be here</h1>
<h2> - Please return to the <a title="DCSL Homepage" href="https://dcsl.dk">homepage</a> or the <a onclick="navigateBack()" href="#">previous page</a></h2>
</div>
</body>
</html>

3
js/script.js Normal file
View file

@ -0,0 +1,3 @@
function navigateBack() {
history.back();
}