diff options
Diffstat (limited to 'styles/style.css')
-rw-r--r-- | styles/style.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/styles/style.css b/styles/style.css index 9e37f62..95d3a94 100644 --- a/styles/style.css +++ b/styles/style.css @@ -18,6 +18,24 @@ small { 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 { color:#373737; text-decoration: none; |