Template:CSS/UT-Tokyo

From 2014.igem.org

(Difference between revisions)
 
(10 intermediate revisions not shown)
Line 1: Line 1:
<html>
<html>
<head>
<head>
 +
<script type="text/javascript">
 +
function changeIcon(URL) {
 +
var target = document.getElementsByTagName("link");
 +
var i = 0;
 +
for(i = 0;i<target.length;i++){
 +
if(target[i].rel == "shortcut icon"){
 +
target[i].parentNode.removeChild(target[i]);
 +
break;
 +
}
 +
}
 +
 +
var link = document.createElement("link");
 +
link.type = "image/x-icon";
 +
link.rel = "shortcut icon";
 +
link.href = URL;
 +
 +
document.getElementsByTagName("head")[0].appendChild(link);
 +
}
 +
 +
changeIcon("https://static.igem.org/mediawiki/2014/a/a9/Icon_32.gif");
 +
 +
</script>
 +
<style type="text/css">
<style type="text/css">
Line 309: Line 332:
top:350px;
top:350px;
right:50%;
right:50%;
-
padding-right:100px;
+
margin-right:100px;
z-index:200;
z-index:200;
 +
border-radius:30px;
}
}
#right-img{
#right-img{
Line 317: Line 341:
top:350px;
top:350px;
left:50%;
left:50%;
-
padding-left:100px;
+
margin-left:100px;
z-index:200;
z-index:200;
 +
border-radius:30px;
}
}
#left-bottom{
#left-bottom{
Line 372: Line 397:
}
}
.content-box #box-left{
.content-box #box-left{
-
width:600px;
+
width:500px;
float:left;
float:left;
}
}
.content-box #box-right{
.content-box #box-right{
width:400px;
width:400px;
-
float:right;
+
float:left;
}
}
#box-right h2, #box-left h2{
#box-right h2, #box-left h2{
Line 393: Line 418:
<script type = "text/javascript" language = "Javascript">
<script type = "text/javascript" language = "Javascript">
function randomEcoli(){
function randomEcoli(){
 +
document.title = "TOP | UT-Tokyo 2014";
var rand1 = Math.floor(Math.random()*9)+1;
var rand1 = Math.floor(Math.random()*9)+1;
var str = "circle0" + rand1;
var str = "circle0" + rand1;

Latest revision as of 03:27, 18 October 2014