1
0
Fork 0

Minor style alterations (rounded corners, heading outside of body box)

website
Mike Gerwitz 2011-03-23 00:47:12 -04:00
parent 4f25ecf924
commit a2db0a5ad7
2 changed files with 32 additions and 14 deletions

View File

@ -7,6 +7,7 @@
</head>
<body>
<h1>ease.js</h1>
<h2>The JavaScript Paradigm Shifter</h2>
<ul id="menu">
<li><a href="index.html">Home</a></li>

View File

@ -11,33 +11,50 @@ html {
body {
background-color: white;
border-color: #babdb6;
border-width: 0px 1px 1px 1px;
border-width: 1px;
border-style: solid;
border-radius: 1em;
margin: 0px 5em;
margin: 5em;
padding: 0.5em 1em 0.5em 1em;
font-family: arial, serif;
}
ul {
margin: 0;
padding: 0.25em;
height: 2em;
h1 {
position: absolute;
top: 0.5em;
}
border-bottom: 1px solid #babdb6;
h2 {
position: absolute;
top: 1em;
right: 5em;
}
ul {
margin: 0;
padding: 0.25em;
height: 2em;
border-bottom: 1px solid #babdb6;
}
ul li {
list-style: none;
padding: 0px 1em 0px 0px;
float: left;
line-height: 2em;
list-style: none;
padding: 0px 1em 0px 0px;
float: left;
line-height: 2em;
}
p.copyright {
margin-top: 1em;
font-size: 0.8em;
text-align: center;
position: fixed;
bottom: 0px;
left: 5em;
right: 5em;
font-size: 0.8em;
text-align: center;
}