diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/css/reset.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/public/css/reset.css b/public/css/reset.css index dfaff5f..a8ccc8a 100644 --- a/public/css/reset.css +++ b/public/css/reset.css @@ -47,8 +47,15 @@ a { color: inherit; } -button { padding: 0; } +button { + padding: 0; + border: none; + background-color: transparent; +} button:hover { cursor: pointer; } +button::-moz-focus-inner { + border: 0; +} html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } |