diff options
Diffstat (limited to 'public/site.css')
-rw-r--r-- | public/site.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/public/site.css b/public/site.css index b6178fd..8599a93 100644 --- a/public/site.css +++ b/public/site.css @@ -25,6 +25,18 @@ pre { -moz-box-sizing: border-box; box-sizing: border-box; } +#toolbar { + border: 1px solid #ccc; + background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#fff)); + background: -webkit-linear-gradient(#eee, #fff); + background: -moz-linear-gradient(#eee, #fff); + background: -o-linear-gradient(#eee, #fff); + background: linear-gradient(#eee, #fff); + border-top: none; +} +#toolbar button { + margin: -1px 0 -1px -1px; +} button { background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); background: -webkit-linear-gradient(#fff, #eee); |