-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
55 lines (48 loc) · 1.29 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php header(" ", true, 500); ?>
<!DOCTYPE html>
<html>
<head>
<title>Drexel Students for Christ | We'll be back</title>
<meta charset="UTF-8">
<style type="text/css">
body {
background: black url('ninjaLogo.svg');
background-position: -200% 125%;
background-size: 130%;
background-repeat: no-repeat;
background-attachment: fixed;
color:#aaa;
font-family: 'Segoe UI', 'Trebuchet MS', Calibri, Tahoma, Arial, sans-serif;
}
div {
position:absolute;
top:20%;
width:70%;
left:15%;
/*background-color:#000;*/
text-align:center;
vertical-align:middle;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
p {
font-size:3em;
}
span {
color:#666;
}
a {
color:#666;
}
</style>
</head>
<body>
<div>
<p>The Media Ninja have stolen the website for some repairs.</p><p>They'll bring it back shortly.</p>
<span>(Though, if you're looking to pass the time, <a href="https://www.youtube.com/watch?v=JS_j07Emt9U">check out this video about ninjas of the Japanese flavor</a>.)</span>
</div>
</body>
</html>