summaryrefslogtreecommitdiff
path: root/stylesheets
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2010-05-22 01:13:22 +0200
committerPatrick Simianer <p@simianer.de>2010-05-22 01:13:22 +0200
commit8f7153eb3867048ab90d35cbc075071bced993f0 (patch)
tree1419e54848129aa2c766ade1028b6dc3a00734e9 /stylesheets
parent8c183055faf4d79c3c704170bd0d22fffe2795b3 (diff)
almost done
Diffstat (limited to 'stylesheets')
-rw-r--r--stylesheets/RegexVis.css0
-rw-r--r--stylesheets/styles.css42
2 files changed, 42 insertions, 0 deletions
diff --git a/stylesheets/RegexVis.css b/stylesheets/RegexVis.css
deleted file mode 100644
index e69de29..0000000
--- a/stylesheets/RegexVis.css
+++ /dev/null
diff --git a/stylesheets/styles.css b/stylesheets/styles.css
new file mode 100644
index 0000000..cac897b
--- /dev/null
+++ b/stylesheets/styles.css
@@ -0,0 +1,42 @@
+body {
+ background-color: #fff;
+ font-family: Helvetica;
+ color: #000;
+}
+
+a { color: #000 }
+
+input {
+ vertical-align: bottom;
+ font-size: 1.1em;
+}
+input[type='button'] {
+ vertical-align:middle;
+ font-size: 1.25em;
+
+}
+input[type='text'] { padding: 4px }
+
+div#wrapper {
+ margin-left: auto;
+ margin-right: auto;
+ width: 1024px;
+ height: 100%;
+}
+
+div#holder {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+span#desc { display:none }
+
+.message {
+ font-weight: bold;
+ -moz-border-radius: 5px;
+ padding: 4px;
+ text-decoration: none;
+}
+.success { background-color: #CDEB8B }
+.failure { background-color: #B02B2C }
+.gray { background-color: #ccc }