summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/css/index.css2
-rw-r--r--static/css/pages.css2
-rw-r--r--static/rainbow.xhtml29
3 files changed, 31 insertions, 2 deletions
diff --git a/static/css/index.css b/static/css/index.css
index 61b45ad..e3c3cd6 100644
--- a/static/css/index.css
+++ b/static/css/index.css
@@ -143,7 +143,7 @@ opacity:0.9;
text-align:center;
width:100%;
bottom:0px;
-
+margin-left:-9px;
font-size:11px;
word-spacing:6px;
line-height:2; color: #666;
diff --git a/static/css/pages.css b/static/css/pages.css
index ad090cb..c49e6c4 100644
--- a/static/css/pages.css
+++ b/static/css/pages.css
@@ -6,7 +6,7 @@ top:150;
#byfurie{
position:absolute;
z-index:888888;
-left:770;top:435;
+left:270;top:345;
}
#chatrap{
width:610;
diff --git a/static/rainbow.xhtml b/static/rainbow.xhtml
new file mode 100644
index 0000000..0ce2c6b
--- /dev/null
+++ b/static/rainbow.xhtml
@@ -0,0 +1,29 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:svg="http://www.w3.org/2000/svg">
+<head>
+ <style>
+ iframe { width:100%; height:100%; border:none; position:absolute; }
+ body { padding:0; margin:0; overflow: hidden; }
+ iframe.target { filter:url(#sat); }
+ </style>
+</head>
+<body>
+<iframe class="target" src="http://dump.fm/chat" border="0" padding="0" spacing="0" width="100%" height="100%" />
+ <svg:svg height="0">
+ <svg:filter id="sat">
+ <svg:feColorMatrix type="hueRotate" id="rotater" values="0"/>
+ </svg:filter>
+ </svg:svg>
+ <script>
+ var rotater = document.getElementById("rotater")
+ function go(){
+ var degree = parseInt(rotater.getAttribute("values"))
+ degree = (degree + 10 ) % 360
+ rotater.setAttribute("values", degree)
+ //.getAttribute("values")
+ setTimeout(go, 100)
+ }
+ go()
+ </script>
+</body>
+</html>