diff options
Diffstat (limited to 'styles/style.css')
-rw-r--r-- | styles/style.css | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/styles/style.css b/styles/style.css index 92090c0..95d3a94 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,7 +1,8 @@ body { font-family: Arial, sans-serif; font-size: 10pt; - margin: 10px 40px; + margin: auto; + width: 980px; } a { @@ -14,7 +15,25 @@ small { } .header > small { - color: #bde; + color: #dde; +} + +.success { + background-color: #efe; + margin: 8px 40px 14px 18px; + padding: 12px; + border: 1px solid #aea; + overflow: hidden; + border-radius: 5px; +} + +.error { + background-color: #fee; + margin: 8px 40px 14px 18px; + padding: 12px; + border: 1px solid #eaa; + overflow: hidden; + border-radius: 5px; } a:hover { |