diff options
Diffstat (limited to 'static')
l--------- | static/highlight | 1 | ||||
-rw-r--r-- | static/main.css | 34 |
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; +} |