diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-03-23 06:14:33 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-03-23 06:17:57 +0800 |
commit | 77907038ffe0edbe5e3472f98fd10d73b76464b8 (patch) | |
tree | 2d72d11e05ed8a716248f2b264d79df376532a5c /ui/app/css | |
parent | 9f1f0bff1ea3267702a2ab75af293e6265e255e4 (diff) | |
download | tangerine-wallet-browser-77907038ffe0edbe5e3472f98fd10d73b76464b8.tar tangerine-wallet-browser-77907038ffe0edbe5e3472f98fd10d73b76464b8.tar.gz tangerine-wallet-browser-77907038ffe0edbe5e3472f98fd10d73b76464b8.tar.bz2 tangerine-wallet-browser-77907038ffe0edbe5e3472f98fd10d73b76464b8.tar.lz tangerine-wallet-browser-77907038ffe0edbe5e3472f98fd10d73b76464b8.tar.xz tangerine-wallet-browser-77907038ffe0edbe5e3472f98fd10d73b76464b8.tar.zst tangerine-wallet-browser-77907038ffe0edbe5e3472f98fd10d73b76464b8.zip |
Got basic validations working
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/index.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/app/css/index.css b/ui/app/css/index.css index 8c6ff29d3..7771ddd99 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -32,7 +32,7 @@ input:focus, textarea:focus { height: 500px; } -button { +button, input[type="submit"] { font-family: 'Montserrat Bold'; outline: none; cursor: pointer; @@ -46,17 +46,17 @@ button { box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36); } -button.btn-green { +.btn-green, input[type="submit"].btn-green { background: rgba(106, 195, 96, 1); box-shadow: 0px 3px 6px rgba(106, 195, 96, 0.36); } -button.btn-red { +.btn-red { background: rgba(254, 35, 17, 1); box-shadow: 0px 3px 6px rgba(254, 35, 17, 0.36); } -button[disabled] { +button[disabled], input[type="submit"][disabled] { cursor: not-allowed; background: rgba(197, 197, 197, 1); box-shadow: 0px 3px 6px rgba(197, 197, 197, 0.36); @@ -66,10 +66,10 @@ button.spaced { margin: 2px; } -button:not([disabled]):hover { +button:not([disabled]):hover, input[type="submit"]:not([disabled]):hover { transform: scale(1.1); } -button:not([disabled]):active { +button:not([disabled]):active, input[type="submit"]:not([disabled]):active { transform: scale(0.95); } |