diff options
author | Joris | 2015-09-06 16:23:48 +0200 |
---|---|---|
committer | Joris | 2015-09-06 16:23:48 +0200 |
commit | 0b6f0fa29075178b45cb17d2932003ab4b342280 (patch) | |
tree | 8fcdf55131683978b5593a07078d8002df4540d9 /public | |
parent | 0ae7d068263dffbc1cc2dc92c7829dd0037c97e7 (diff) |
Use buttons or links when elements are clickable
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; } |