diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5c93f45 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/static/index.html b/static/index.html index 88097f2..c9389f7 100644 --- a/static/index.html +++ b/static/index.html @@ -3,16 +3,12 @@ Dotplan Online + -
+

Dotplan Online

- -

What is Dotplan?

-

Dotplan is a modern re-imagining of the .plan file. It is intended to give the internet elite a free and open platform through which they may express their personalities (or lack thereof) with one another.

- -

What is Dotplan Online?

-

Dotplan Online is a free service running the reference implementation Dotplan API server.

-
+

This site is coming soon. For now you can check out the source code. + diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..c3d0b65 --- /dev/null +++ b/static/style.css @@ -0,0 +1,90 @@ +/* http://meyerweb.com/eric/tools/css/reset/ +v2.0 | 20110126 +License: none (public domain) + */ + +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, 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, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} + +/* site styling */ + +html, body { + font-size: 125%; + line-height: 130%; + font-family: monospace; + color: #e3e0d7; + background-color: #080808; +} + +main { + background-color: #242424; + max-width: 900px; + margin: 1em auto; + padding: 1em 1.5em; +} + +p { + margin: 1em 0 0.5em 0; +} + +h1 { + font-weight: 900; + color: #cae982; + margin: 1em 0 0.5em 0; +} + +h1::before { + content: '# '; +} + +a { + color: #88b8f6; + text-decoration: underline; + cursor: pointer; + outline: none; +} + +a:hover { + color: #eadead; +}