Static body width of 800px
parent
a2db0a5ad7
commit
e0a0567a0a
45
index.html
45
index.html
|
@ -6,30 +6,33 @@
|
||||||
<link type="text/css" rel="stylesheet" href="style.css" />
|
<link type="text/css" rel="stylesheet" href="style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>ease.js</h1>
|
<div id="content">
|
||||||
<h2>The JavaScript Paradigm Shifter</h2>
|
<h1>ease.js</h1>
|
||||||
|
<h2>The JavaScript Paradigm Shifter</h2>
|
||||||
|
|
||||||
<ul id="menu">
|
<ul id="menu">
|
||||||
<li><a href="index.html">Home</a></li>
|
<li><a href="index.html">Home</a></li>
|
||||||
<li><a href="manual.html">Manual (Single Page)</a></li>
|
<li><a href="manual.html">Manual (Single Page)</a></li>
|
||||||
<li><a href="manual/">Manual (Split)</a></li>
|
<li><a href="manual/">Manual (Split)</a></li>
|
||||||
<li><a href="https://github.com/mikegerwitz/easejs">Source Code</a></li>
|
<li><a href="https://github.com/mikegerwitz/easejs">Source Code</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<br clear="both" />
|
<br clear="both" />
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
ease.js is a collection of CommonJS modules intended to “ease”
|
ease.js is a collection of CommonJS modules intended to “ease”
|
||||||
the transition into JavaScript from other Object-Oriented languages. It
|
the transition into JavaScript from other Object-Oriented languages. It
|
||||||
provides an intuitive means of achieving classical inheritance and has
|
provides an intuitive means of achieving classical inheritance and has
|
||||||
planned support for traits/mixins, function overloading and more.
|
planned support for traits/mixins, function overloading and more.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<strong>This project is under heavy development.</strong> However, the
|
<strong>This project is under heavy development.</strong> However, the
|
||||||
<tt>master</tt> branch is always guaranteed to be in a working, stable
|
<tt>master</tt> branch is always guaranteed to be in a working, stable
|
||||||
state. It is currently in use within a production system at the author's
|
state. It is currently in use within a production system at the author's
|
||||||
place of employment. Feel free to use ease.js in your own projects.
|
place of employment. Feel free to use ease.js in your own projects.
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
|
</content>
|
||||||
|
|
||||||
<p class="copyright">
|
<p class="copyright">
|
||||||
Copyright © 2011 <a href="http://mikegerwitz.name">Mike Gerwitz</a>
|
Copyright © 2011 <a href="http://mikegerwitz.name">Mike Gerwitz</a>
|
||||||
|
|
14
style.css
14
style.css
|
@ -15,21 +15,27 @@ body {
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
|
|
||||||
margin: 5em;
|
margin: 5em auto;
|
||||||
padding: 0.5em 1em 0.5em 1em;
|
padding: 0.5em 1em 0.5em 1em;
|
||||||
|
|
||||||
|
width: 800px;
|
||||||
|
|
||||||
font-family: arial, serif;
|
font-family: arial, serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0.5em;
|
top: -2.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 1em;
|
top: -2.5em;
|
||||||
right: 5em;
|
right: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
|
Loading…
Reference in New Issue