diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-09-19 12:10:24 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-09-19 12:10:24 +0800 |
commit | 05b960cacefc6ec1e1c0e988b115bdb973217804 (patch) | |
tree | a4bd8e7ecb2cdf51d6eeffd858b30adbfb482363 /ui/app/css/index.css | |
parent | 262e767f797ff35f1a55940f4729b4a70160f377 (diff) | |
parent | ae2f0f585fd70986ce71f95b40ed49e9909283f5 (diff) | |
download | tangerine-wallet-browser-05b960cacefc6ec1e1c0e988b115bdb973217804.tar tangerine-wallet-browser-05b960cacefc6ec1e1c0e988b115bdb973217804.tar.gz tangerine-wallet-browser-05b960cacefc6ec1e1c0e988b115bdb973217804.tar.bz2 tangerine-wallet-browser-05b960cacefc6ec1e1c0e988b115bdb973217804.tar.lz tangerine-wallet-browser-05b960cacefc6ec1e1c0e988b115bdb973217804.tar.xz tangerine-wallet-browser-05b960cacefc6ec1e1c0e988b115bdb973217804.tar.zst tangerine-wallet-browser-05b960cacefc6ec1e1c0e988b115bdb973217804.zip |
Merge branch 'master' into tos
Diffstat (limited to 'ui/app/css/index.css')
-rw-r--r-- | ui/app/css/index.css | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/ui/app/css/index.css b/ui/app/css/index.css index ba90aa551..8543960fe 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -36,24 +36,40 @@ button { font-family: 'Montserrat Bold'; outline: none; cursor: pointer; - box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36); - /*margin: 10px;*/ padding: 8px 12px; border: none; - background: #F7861C; color: white; transform-origin: center center; transition: transform 50ms ease-in; + /* default orange */ + background: rgba(247, 134, 28, 1); + box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36); +} + +button.btn-green { + background: rgba(106, 195, 96, 1); + box-shadow: 0px 3px 6px rgba(106, 195, 96, 0.36); +} + +button.btn-red { + background: rgba(254, 35, 17, 1); + box-shadow: 0px 3px 6px rgba(254, 35, 17, 0.36); +} + +button[disabled] { + cursor: not-allowed; + background: rgba(197, 197, 197, 1); + box-shadow: 0px 3px 6px rgba(197, 197, 197, 0.36); } button.spaced { margin: 2px; } -button:hover { +button:not([disabled]):hover { transform: scale(1.1); } -button:active { +button:not([disabled]):active { transform: scale(0.95); } |