Ready to upload to benroberts.net/ecs

tidied up unneeded files, played with css
added an empty projects page.
removed the cv page and instead hyperlinked directly to .pdf
This commit is contained in:
2008-04-21 01:27:18 +00:00
parent 8447c7a41a
commit 46cd0f0c98
12 changed files with 219 additions and 89 deletions

BIN
resources/at.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

9
resources/email.js Normal file
View File

@@ -0,0 +1,9 @@
window.onload = function() {
for (var imgs = document.getElementsByTagName('img'),i=0,l=imgs.length; i<l; i++) {
if (/at\.png$/.exec(imgs[i].src) ) {
imgs[i].parentNode.insertBefore(document.createTextNode('@'),imgs[i]);
imgs[i].parentNode.removeChild(imgs[i]);
}
}
}

View File

@@ -5,11 +5,11 @@
body {
margin: 0em;
padding: 0em;
font-family: verdana, tahoma, sans-serif;
font-family: verdana, helvetica, tahoma, sans-serif;
}
div.header {
border-bottom: 1px solid grey;
/*border-bottom: 1px solid grey;*/
padding-bottom: 0.5em;
margin: 0.5em 1em 1em 1em;
}
@@ -41,7 +41,7 @@ div.footer {
}
div.sidebar ul {
list-style: circle;
list-style: none;
}
/*
@@ -52,6 +52,27 @@ div.header h1 {
font-size: 3.0em;
margin: 0.2em;
margin-left: 0em;
color: dimgrey;
}
p.subtitle {
font-weight: bold;
font-style: italic;
color: dimgrey;
}
h2 {
color: steelblue;
}
a {
text-decoration: underline;
color: steelblue;
}
a:visited {
color: dimgrey;
text-decoration: none;
}
@@ -135,17 +156,3 @@ p.loginform label {
p.loginform input {
float: right;
}
/*
Homepage
*/
img.bio {
display: block;
margin-left: auto;
margin-right: auto;
border: 1px solid grey;
padding: 0.2em;
}