spongy/index.html

61 lines
1001 B
HTML
Raw Normal View History

2014-07-14 19:30:47 -06:00
<!DOCTYPE html>
<html>
<head>
2014-07-24 11:11:34 -06:00
<title>#tron</title>
2014-08-05 15:53:03 -06:00
<link rel="icon" type="image/png" sizes="64x64" href="chat.png">
2014-07-23 21:15:04 -06:00
<script type="application/javascript" src="irc.js">
2014-07-14 19:30:47 -06:00
</script>
<style type="text/css">
2014-07-24 10:34:02 -06:00
#a, #kiboze {
2014-07-14 19:30:47 -06:00
max-height: 20em;
2014-07-24 10:34:02 -06:00
overflow: scroll;
2014-07-23 21:15:04 -06:00
}
2014-07-24 10:34:02 -06:00
#a p, #kiboze p {
margin: 0em 0em 0em 4em;
text-indent: -4em;
2014-07-14 19:30:47 -06:00
}
2014-07-24 10:34:02 -06:00
#kiboze {
max-height: 7em;
background-color: #eee;
}
2014-07-14 19:30:47 -06:00
.timestamp {
color: silver;
}
.forum {
color: darkblue;
}
.sender {
color: green;
}
2014-08-05 15:53:03 -06:00
.sender:before {
color: green;
content: "<";
}
.sender:after {
content: ">";
}
2014-07-14 19:30:47 -06:00
.raw {
color: purple;
}
2014-07-24 10:34:02 -06:00
input[name~=target] {
width: 7em;
}
input[name~=text] {
width: 75%;
2014-07-14 19:30:47 -06:00
}
</style>
</head>
<body>
<div id="a"></div>
<form id="command">
<input type="hidden" name="auth" value="" id="authtok">
2014-07-14 19:30:47 -06:00
<input type="hidden" name="type" value="command">
2014-07-24 10:34:02 -06:00
<input name="target" value="#tron">
2014-07-14 19:30:47 -06:00
<input name="text" autofocus>
<input type="Submit" value="Send">
</form>
2014-07-24 10:34:02 -06:00
<div id="kiboze"></div>
2014-07-14 19:30:47 -06:00
</body>
</html>