diff options
| author | sostler <sbostler@gmail.com> | 2010-04-29 03:16:02 -0400 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2010-04-29 03:16:02 -0400 |
| commit | afef6f9e56586a8c5bc01f1dcf6bd3be65abd541 (patch) | |
| tree | 2a9548bb153989100bf41334851f2c04ab571697 /static | |
| parent | 210d0294b59759c7cccd3d1f7408627cecc7f86a (diff) | |
| parent | 584915623ffd93ea86ae6957018b2e8c4f9af9dd (diff) | |
Merge branch 'master' of ssh://dump.fm/pichat/repo
Diffstat (limited to 'static')
| -rw-r--r-- | static/css/index.css | 2 | ||||
| -rw-r--r-- | static/css/pages.css | 2 | ||||
| -rw-r--r-- | static/rainbow.xhtml | 29 |
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> |
