/* Reset Across Browsers */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, section, header, footer, aside, nav {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{
display: block;
margin: 0;
}
html
{
height: 100%;
overflow-y: scroll;
}
body
{
min-height: 100%
}
body
{
background: fuchsia;
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0.25, rgb(135,135,135)),
color-stop(1, rgb(48,48,48))
);
background: -moz-linear-gradient(
center top,
rgb(135,135,135) 25%,
rgb(48,48,48) 100%
);
background: -o-linear-gradient(
top,
rgb(135,135,135) 25%,
rgb(48,48,48) 100%
);
font-family: arial, sans-serif;
font-size: 16px;
text-align: justify;
}
#container
{
width: 900px;
margin-left: auto;
margin-right: auto;
border: 0px solid yellow;
margin-top: 50px;
margin-bottom: 2em;
}
#header
{
border: 1px solid yellow;
position: relative;
overflow: hidden;
}
#header #logo
{
float: left;
border: 1px solid yellow;
position: absolute;
}
#header h1
{
border: 1px solid red;
float: left;
font-size: 26pt;
margin-top: 30px;
margin-left: 145px;
}
#nav
{
border: 1px solid red;
position: absolute;
bottom: 50px;
right: 30px;
list-style: none;
}
#nav li
{
float: left;
}
#nav li
{
border-right: 1px solid;
padding-right: 5px;
margin-right: 5px;
}
#nav li:last-of-type
{
border-right: 0px;
padding-right: 0px;
margin-right: 0px;
}
#nav a , h1 a
{
text-decoration: none;
color: #000000;
}
#content
{
background: #ffffff;
background: rgba(255, 255, 255, 0.9);
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
padding: 1em;
-webkit-box-shadow: 0px 0px 25px #333;
-moz-box-shadow: 0px 0px 25px #333;
box-shadow: 0px 0px 25px #333;
}