diff options
author | lassulus <lass@lassul.us> | 2017-06-20 16:05:27 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-06-20 16:05:27 +0200 |
commit | f0bcc6e1f147726cbbf8c3d8a9da503886d2321d (patch) | |
tree | bf8e0eabe03a8dcf9201c580ab1f4ecc4660b8b4 /krebs/5pkgs/simple/krebs-pages/fixtures/index.html | |
parent | bda14221cf46003ecf76756a5db7422c70737c85 (diff) | |
parent | 57c6b890f9088bb333eeab215ecfeca9d09ce3ef (diff) |
Merge remote-tracking branch 'ni/master' into HEAD
Diffstat (limited to 'krebs/5pkgs/simple/krebs-pages/fixtures/index.html')
-rw-r--r-- | krebs/5pkgs/simple/krebs-pages/fixtures/index.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/krebs/5pkgs/simple/krebs-pages/fixtures/index.html b/krebs/5pkgs/simple/krebs-pages/fixtures/index.html new file mode 100644 index 000000000..e6b7034b3 --- /dev/null +++ b/krebs/5pkgs/simple/krebs-pages/fixtures/index.html @@ -0,0 +1,42 @@ +<!doctype html> +<title>krebscode</title> +<style> + html { + background: black url(krebs-v2.png) fixed no-repeat 50% 0%; + background-size: 423px; + } + a:visited { + color: white; + } + a:link { + color: lightgrey; + } +</style> +<script> + var html; + window.onload = function () { + html = document.getElementsByTagName('html')[0]; + window.onresize(); + } + window.onresize = function () { + html.style.backgroundSize = + Math.min(document.height - 23, document.width - 23) + 'px'; + } +</script> +<body> + <p> + <a href="http://krebscode.github.io/minikrebs/linuxtag"> + Linuxtag Heckenkrebs Presentation + </a> + </p> + <p> + <a href="http://krebscode.github.io/writeups"> + CTF Writeups + </a> + </p> + <p> + <a href="thesauron.html"> + Thesauron + </a> + </p> +</body> |