Added initial files
This commit is contained in:
6
assets/bootstrap/css/bootstrap.min.css
vendored
Normal file
6
assets/bootstrap/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
assets/bootstrap/js/bootstrap.min.js
vendored
Normal file
6
assets/bootstrap/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
74
assets/css/404.css
Normal file
74
assets/css/404.css
Normal file
@@ -0,0 +1,74 @@
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #282828;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: "Bevan", cursive;
|
||||
font-size: 130px;
|
||||
margin: 10vh 0 0;
|
||||
text-align: center;
|
||||
overflow-y: auto;
|
||||
letter-spacing: 5px;
|
||||
/*background-color: black;*/
|
||||
color: black;
|
||||
text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
|
||||
-moz-background-clip: text;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
p span {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
code {
|
||||
color: #bdbdbd;
|
||||
text-align: left;
|
||||
display: block;
|
||||
overflow-y: auto;
|
||||
font-size: 16px;
|
||||
margin: 0 30px 25px;
|
||||
}
|
||||
|
||||
code span {
|
||||
color: #f0c674;
|
||||
}
|
||||
|
||||
code i {
|
||||
color: #b5bd68;
|
||||
}
|
||||
|
||||
code em {
|
||||
color: #b294bb;
|
||||
font-style: unset;
|
||||
}
|
||||
|
||||
code b {
|
||||
color: #81a2be;
|
||||
font-weight: 500;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #8abeb7;
|
||||
font-family: monospace;
|
||||
font-size: 20px;
|
||||
text-decoration: underline;
|
||||
overflow-y: auto;
|
||||
margin-top: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 880px) {
|
||||
p {
|
||||
font-size: 14vw;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
BIN
assets/img/background.jpg
Normal file
BIN
assets/img/background.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.3 MiB |
BIN
assets/img/favicon.png
Normal file
BIN
assets/img/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
21
assets/js/404.js
Normal file
21
assets/js/404.js
Normal file
@@ -0,0 +1,21 @@
|
||||
function type(n, t) {
|
||||
var str = document.getElementsByTagName("code")[n].innerHTML.toString();
|
||||
var i = 0;
|
||||
document.getElementsByTagName("code")[n].innerHTML = "";
|
||||
|
||||
setTimeout(function() {
|
||||
var se = setInterval(function() {
|
||||
i++;
|
||||
document.getElementsByTagName("code")[n].innerHTML =
|
||||
str.slice(0, i) + "|";
|
||||
if (i == str.length) {
|
||||
clearInterval(se);
|
||||
document.getElementsByTagName("code")[n].innerHTML = str;
|
||||
}
|
||||
}, 10);
|
||||
}, t);
|
||||
}
|
||||
|
||||
type(0, 0);
|
||||
type(1, 600);
|
||||
type(2, 1300);
|
||||
Reference in New Issue
Block a user