41 lines
728 B
HTML
Executable File
41 lines
728 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
color: gray;
|
|
font-family: "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace; /* PLS NO COURIER I HATE COURIER */
|
|
font-size: 13px;
|
|
white-space: pre;
|
|
}
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.date {
|
|
color: purple;
|
|
}
|
|
.ip {
|
|
color: cyan;
|
|
font-weight: bold;
|
|
}
|
|
.httpver {
|
|
color: darkred;
|
|
}
|
|
.method {
|
|
color: yellow;
|
|
/*font-weight: bold;*/
|
|
}
|
|
.url {
|
|
color: green;
|
|
}
|
|
.referrer {
|
|
color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="setTimeout(function(){scrollTo(0,document.body.scrollHeight)},0)"> |