Inital commit of webpage. Nothing impressive.
commit
4f25ecf924
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>ease.js</title>
|
||||
<link type="text/css" rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>ease.js</h1>
|
||||
|
||||
<ul id="menu">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="manual.html">Manual (Single Page)</a></li>
|
||||
<li><a href="manual/">Manual (Split)</a></li>
|
||||
<li><a href="https://github.com/mikegerwitz/easejs">Source Code</a></li>
|
||||
</ul>
|
||||
<br clear="both" />
|
||||
|
||||
<p>
|
||||
ease.js is a collection of CommonJS modules intended to “ease”
|
||||
the transition into JavaScript from other Object-Oriented languages. It
|
||||
provides an intuitive means of achieving classical inheritance and has
|
||||
planned support for traits/mixins, function overloading and more.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>This project is under heavy development.</strong> However, the
|
||||
<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
|
||||
place of employment. Feel free to use ease.js in your own projects.
|
||||
</p>
|
||||
|
||||
<p class="copyright">
|
||||
Copyright © 2011 <a href="http://mikegerwitz.name">Mike Gerwitz</a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,43 @@
|
|||
/**
|
||||
* ease.js color scheme
|
||||
*
|
||||
* Inspired by Tango Icon Theme
|
||||
*/
|
||||
|
||||
html {
|
||||
background-color: #eeeeec;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: white;
|
||||
border-color: #babdb6;
|
||||
border-width: 0px 1px 1px 1px;
|
||||
border-style: solid;
|
||||
|
||||
margin: 0px 5em;
|
||||
padding: 0.5em 1em 0.5em 1em;
|
||||
|
||||
font-family: arial, serif;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
p.copyright {
|
||||
margin-top: 1em;
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
Loading…
Reference in New Issue