aboutsummaryrefslogtreecommitdiffstats
path: root/error.css
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2011-01-31 09:18:24 +0100
committerStefan Ritter <xeno@thehappy.de>2011-01-31 09:18:24 +0100
commitc7ac70ff84e89a978d20361987a95c31fc03c071 (patch)
tree1de4b1609ff0191dc0e9fa4ffb6b38ca8e7c1a72 /error.css
parentb32a982b81bcd1f1d3c41414e84ed5cb505d15e8 (diff)
Make error page more beautiful1.0rc3
Diffstat (limited to 'error.css')
-rw-r--r--error.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/error.css b/error.css
new file mode 100644
index 0000000..56b45c4
--- /dev/null
+++ b/error.css
@@ -0,0 +1,29 @@
+* {
+ margin: 0px;
+ padding: 0px;
+}
+
+body, html {
+ text-align: center;
+ font-family: Times;
+}
+
+.container {
+ margin-top: 20px;
+ margin-left: auto;
+ margin-right: auto;
+ width: 300px;
+ border: 1px solid #666;
+ -moz-border-radius: 10px;
+ background: #eee;
+}
+
+.title {
+ border-bottom: 1px dotted #999;
+ font-size: 20px;
+ color: #f30;
+}
+
+.text {
+ font-size: 12px;
+}