summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2011-06-30 23:48:38 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2011-06-30 23:48:38 +0200
commitec2f803a306c7843a8814029b5e77a9dadffd136 (patch)
treef6d54a0a2808de835bed85d2e8eba5df2d633238 /static
parent365added92d4faf26f03d14d303be5ac43706c48 (diff)
downloadnode-paste-ec2f803a306c7843a8814029b5e77a9dadffd136.tar.gz
node-paste-ec2f803a306c7843a8814029b5e77a9dadffd136.tar.xz
node-paste-ec2f803a306c7843a8814029b5e77a9dadffd136.zip
progress: templates/css, new router, paste module as db abstraction
Diffstat (limited to 'static')
l---------static/highlight1
-rw-r--r--static/main.css34
2 files changed, 35 insertions, 0 deletions
diff --git a/static/highlight b/static/highlight
new file mode 120000
index 0000000..0c5b3ef
--- /dev/null
+++ b/static/highlight
@@ -0,0 +1 @@
+../deps/highlight.js/styles/ \ No newline at end of file
diff --git a/static/main.css b/static/main.css
new file mode 100644
index 0000000..b34c5e8
--- /dev/null
+++ b/static/main.css
@@ -0,0 +1,34 @@
+body {
+ width: 80%;
+ margin: 0 auto;
+ text-align: center;
+}
+
+textarea {
+ width: 95%;
+ height: 50em;
+ display: block;
+ margin: 0 auto;
+ border: 1px solid black;
+}
+
+select#language {
+ width: 40%;
+ margin: 0 0 1em;
+}
+
+input.submit {
+ width: 95%;
+ height: 2em;
+ margin: 2em auto 0;
+ border: 1px solid black;
+ background: #eee;
+}
+
+input.submit:hover {
+ background: #ccc;
+}
+
+fieldset {
+ border: 0;
+}