diff options
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/index.css | 49 | ||||
-rw-r--r-- | ui/app/css/lib.css | 27 |
2 files changed, 65 insertions, 11 deletions
diff --git a/ui/app/css/index.css b/ui/app/css/index.css index e2be0abd9..4b9b5b67d 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); } @@ -149,9 +165,6 @@ textarea.twelve-word-phrase { } .network-name { - position: absolute; - top: 8px; - left: 60px; width: 5.2em; line-height: 9px; text-rendering: geometricPrecision; @@ -395,6 +408,16 @@ input.large-input { .name-label{ } + +.unapproved-tx-icon { + height: 24px; + background: #4dffff; + border: solid; + border-color: #AEAEAE; + border-width: 0.5px; + border-radius: 13px; +} + .edit-text { height: 100%; visibility: hidden; @@ -539,8 +562,8 @@ input.large-input { .marketinfo{ font-family: 'Montserrat light'; color: #AEAEAE; - font-size: 12px; - line-height: 14px; + font-size: 15px; + line-height: 17px; } #fromCoin::-webkit-calendar-picker-indicator { @@ -583,12 +606,18 @@ input.large-input { margin-left: 5px; } +.qr-header { + font-size: 25px; + margin-top: 40px; +} + .qr-message { font-size: 12px; color: #F7861C; } div.message-container > div:first-child { + margin-top: 18px; font-size: 15px; color: #4D4D4D; } diff --git a/ui/app/css/lib.css b/ui/app/css/lib.css index bcd6a4a67..a8df1d115 100644 --- a/ui/app/css/lib.css +++ b/ui/app/css/lib.css @@ -23,6 +23,14 @@ flex-direction: column; } +.space-between { + justify-content: space-between; +} + +.space-around { + justify-content: space-around; +} + .flex-column-bottom { display: flex; flex-direction: column-reverse; @@ -196,6 +204,23 @@ hr.horizontal-line { align-items: center; justify-content: center; padding: 4px; + z-index: 1; +} + +.keyring-label { + z-index: 1; + font-size: 11px; + background: rgba(255,0,0,0.8); + bottom: -47px; + color: white; + border-radius: 10px; + height: 20px; + min-width: 20px; + position: relative; + display: flex; + align-items: center; + justify-content: center; + padding: 4px; } .ether-balance { @@ -213,7 +238,7 @@ hr.horizontal-line { background: rgb(0, 163, 68); border-radius: 20px; } -.morden-icon { +.testnet-icon { background: #2465E1; } |