credits.html

This commit is contained in:
Astro 2011-12-26 20:00:46 +01:00
parent 74b2dd8c91
commit 5f18d586a9
1 changed files with 80 additions and 0 deletions

80
credits.html Normal file
View File

@ -0,0 +1,80 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
body {
color: white;
background-color: black;
text-align: center;
font-size: 400%;
font-family: serif;
}
@-webkit-keyframes 'scroll' {
from {
-webkit-transform: translate(0, 100%);
color: black;
}
5% {
color: white;
}
50% {
-webkit-transform: translate(0, 0px);
}
95% {
color: white;
}
to {
-webkit-transform: translate(0, -100%);
color: black;
}
}
.scroll {
-webkit-animation-name: scroll;
-webkit-animation-duration: 15s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
dl {
width: 14em;
margin: 2em auto;
}
dt {
float: left;
width: 6em;
text-align: right;
}
dd {
margin-left: 8em;
text-align: left;
}
</style>
</head>
<body>
<div class="scroll">
<h1>Pentanews Show</h1>
<dl>
<dt>moderators</dt>
<dd>alien8</dd>
<dd>klobs</dd>
</dl>
<dl>
<dt>buzzers</dt>
<dd>john</dd>
<dd>sebseb7</dd>
</dl>
<dl>
<dt>code</dt>
<dd>astro</dd>
<dd>thammi</dd>
</dl>
<p style="font-family: sans-serif">
http://www.c3d2.de/radio.html
<br/>
http://pentamedia.org/
</p>
</div>
</body> </html>