Just a little thing I made sicne I was bored ~
Online example
HTML Code:
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Gommle o_O</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css">
body {
margin:50px 0px;
padding:0px;
text-align:center;
background-color:#E6FFF4;
font:11px verdana, arial, helvetica, sans-serif;
color:#003B36;
}
/* This one centers the content */
#container {
width:500px;
margin:0px auto;
padding:15px;
filter:alpha(opacity=70);
-moz-opacity:.70;
opacity:.70;
}
/* The main content box */
#content {
background-color:#BFFFE4;
border:1px solid #007D48;
border-top:3px solid #007D48;
padding:15px;
text-align:left;
}
#menu {
}
#menu ul {
margin:0px;
padding:0px;
}
#menu ul li {
display:inline;
list-style-type:none;
}
#menu ul li a {
color:#003948;
text-decoration:none;
font-size:150%;
font-family:Trebuchet MS, Verdana, Times New Roman, Arial, Sans;
background-color:#BFFFE4;
border:1px solid #007D48;
border-top:1px solid #007D48;
border-left:1px solid #007D48;
border-right:1px solid #00B366;
border-bottom:none;
padding:3px;
margin:3px;
}
#menu ul li a:hover {
text-decoration:none;
font-size:150%;
font-family:Trebuchet MS, Verdana, Times New Roman, Arial, Sans;
border-top:1px solid #00B366;
border-right:1px solid #007D48;
border-left:1px solid #00B366;
position:relative;
top:1px;
left:1px;
margin:3px;
filter:alpha(opacity=70);
-moz-opacity:.70;
opacity:.70;
}
/* Thanks to BlueRobot for the text styling! */
h1 {
color:#333;
font:1.8em/1 Georgia, "Times New Roman", Times, serif;
font-weight:900;
font-style:italic;
}
h2 {
color:#333;
font:1.1em/1 Georgia, "Times New Roman", Times, serif;
font-weight:700;
margin:2em 0 .25em;
}
h3 {
color:#666;
font-size:1em;
font-weight:800;
margin:3em 0 .35em;
}
p {
line-height:1.8;
margin:0 0 1em;
}
</style> </head> <body> <div id="container"> <div id="menu"> <ul> <li><a id="active" href="#">Home</a></li> <li><a href="#">Cool things</a></li> <li><a href="#">Links</a></li> <li><a href="#">Contact me</a></li> </ul> </div> <div id="content"> <h1>Welcome</h1> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p> <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p> </div> </div> </body> </html> Feel free to use anywhere you want. Just don't claim you made it.