From: Nicolas Boisselier Date: Tue, 14 Jul 2015 16:24:34 +0000 (+0100) Subject: update, add, delete X-Git-Url: https://git.nbdom.net/?a=commitdiff_plain;h=f8f57f99a462cdf214aa1c18e831932929a68695;p=nb.git update, add, delete --- diff --git a/lib/css/button.css b/lib/css/button.css new file mode 100644 index 00000000..a5fd3c23 --- /dev/null +++ b/lib/css/button.css @@ -0,0 +1,30 @@ +.button { + display: inline-block; + text-decoration: none; + font-size: 13px; + line-height: 26px; + height: 28px; + margin: 0; + padding: 0 10px 1px; + cursor: pointer; + border-width: 1px; + border-style: solid; + -webkit-appearance: none; + -webkit-border-radius: 3px; + border-radius: 3px; + white-space: nowrap; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + + border: solid 1px #aaa; + background-color: #F0F0F0; + color: #444; +} + +form a.button:visited, +form a.button { + display: inline-block; + position: relative; + top: -1px; +}