From 4f25ecf9242f02c35d550e5d648c5de8a6a344bf Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Mon, 21 Mar 2011 22:49:03 -0400 Subject: [PATCH] Inital commit of webpage. Nothing impressive. --- index.html | 37 +++++++++++++++++++++++++++++++++++++ style.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..7052a30 --- /dev/null +++ b/index.html @@ -0,0 +1,37 @@ + + + + + ease.js + + + +

ease.js

+ + +
+ +

+ 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. +

+ +

+ This project is under heavy development. However, the + master 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. +

+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..4db3f82 --- /dev/null +++ b/style.css @@ -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; +} +