Header
From Wikiverse
Line 97: | Line 97: | ||
color: deepskyblue; | color: deepskyblue; | ||
} | } | ||
- | input. | + | input.textE { |
background-color: #323232; | background-color: #323232; | ||
border: 1px solid #444444; | border: 1px solid #444444; | ||
Line 114: | Line 114: | ||
{ | { | ||
if ( els[i].getAttribute('type') == "text" ) | if ( els[i].getAttribute('type') == "text" ) | ||
- | els[i].className = ' | + | els[i].className = 'textE'; |
else | else | ||
- | els[i].className = ' | + | els[i].className = 'buttonE'; |
} | } | ||
} | } | ||
} | } | ||
</script> | </script> |
Revision as of 16:42, 18 February 2008
<style>
body {
color: #AAAAAA; background: url(none); background-color: #363636; font-size: 10px;
}
textarea {
background-color: #363636; color: #BBBBBB; border: 1px solid #444444;
}
- content {
background-color: #323232; border: 1px solid #444444; padding: 2em 2em 2em 2em; text-size:small;
}
- footer {
background-color: #323232; border: 1px solid #444444;
}
inputbox {
background-color: #323232; border-color: #444444;
}
pre {
background-color: #323232; background-image: url(none)
}
.firstHeading { font-family: Verdana;}
h1, h2, h3, h4, h5, h6 { font-family: Verdana;}
p { font-family: Verdana; font-size: small; }
.usermessage {
background-color: #313131; font-family: Verdana;
}
.toccolours {
background-color: #313131;
}
div.townBox dl dd {
background-color: #313131;
}
.portlet h5 {
background-color: #383838; font-size: medium; color: #ffffff; border: 1px solid #444444;
}
.pBody {
background-color: #363636; font-family: Verdana; border: 1px solid #444444;
} li.selected {
background-color: #323232; border:1px solid #444444;
} li.new {
background-color: #323232; border:1px solid #444444;
}
li#ca-talk {
background-color: #323232; border: 1px solid #444444; }
a {
color: deepskyblue;
} a.new {
color: #ee7474;
} a:visited {
color: skyblue;
} a:active {
color: deepskyblue;
} input.textE {
background-color: #323232; border: 1px solid #444444; background-image:none;
} </style> <script type="text/javascript">
function changeInputs()
{ var els = document.getElementsByTagName('input'); var elsLen = els.length; var i = 0; for ( i=0;i<elsLen;i++ ) { if ( els[i].getAttribute('type') ) { if ( els[i].getAttribute('type') == "text" ) els[i].className = 'textE'; else els[i].className = 'buttonE'; } } } </script>