nifty-wallet/old-ui/app/css/index.css

931 lines
14 KiB
CSS
Raw Normal View History

/*
faint orange (textfield shades) #FAF6F0
light orange (button shades): #F5C26D
dark orange (text): #F5A623
borders/font/any gray: #4A4A4A
*/
/*
application specific styles
*/
* {
box-sizing: border-box;
}
html, body {
2018-07-26 04:42:04 -07:00
font-family: 'Nunito Regular';
2018-07-26 11:15:51 -07:00
color: #333333;
font-weight: 300;
line-height: 1.4em;
2016-05-13 18:07:47 -07:00
background: #F7F7F7;
2017-07-24 17:04:13 -07:00
margin: 0;
padding: 0;
height: 100%;
2017-07-24 17:04:13 -07:00
}
html {
2017-07-26 14:36:22 -07:00
min-height: 500px;
}
.app-root {
overflow: hidden;
position: relative
}
.app-primary {
display: flex;
2018-07-26 11:15:51 -07:00
background: #ffffff;
2018-07-26 15:54:07 -07:00
width: 100%;
2016-05-13 18:07:47 -07:00
}
2016-05-18 12:13:19 -07:00
input:focus, textarea:focus {
2016-05-13 18:07:47 -07:00
outline: none;
}
.full-size {
height: 100%;
width: 100%;
}
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.full-flex-height {
display: flex;
flex: 1 1 auto;
flex-direction: column;
}
#app-content {
overflow-x: hidden;
2017-07-24 17:04:13 -07:00
height: 100%;
display: flex;
flex-direction: column;
2018-07-26 11:15:51 -07:00
background: #ffffff;
}
2017-03-22 15:14:33 -07:00
button, input[type="submit"] {
2018-07-26 04:42:04 -07:00
font-family: 'Nunito Bold';
outline: none;
cursor: pointer;
padding-left: 15px;
padding-right: 15px;
height: 32px;
border: none;
color: white;
transform-origin: center center;
transition: transform 50ms ease-in;
2018-07-26 04:42:04 -07:00
border-radius: 3px;
font-size: 14px;
/* default green */
background: #8fdc97;
2018-07-26 15:54:07 -07:00
/*box-shadow: 0px 5px 10px 0px rgba(92, 52, 162, 0.3);*/
}
2017-03-22 15:14:33 -07:00
.btn-green, input[type="submit"].btn-green {
2018-07-26 11:15:51 -07:00
background: #8fdc97;
}
2017-03-22 15:14:33 -07:00
.btn-red {
2018-07-26 04:42:04 -07:00
background: #df2265;
}
.btn-violet {
background: #6729a8;
}
2017-03-22 15:14:33 -07:00
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);
}
2016-05-11 02:11:31 -07:00
button.spaced {
margin: 2px;
}
2017-03-22 15:14:33 -07:00
button:not([disabled]):hover, input[type="submit"]:not([disabled]):hover {
2016-12-16 10:04:57 -08:00
transform: scale(1.1);
}
2017-03-22 15:14:33 -07:00
button:not([disabled]):active, input[type="submit"]:not([disabled]):active {
transform: scale(0.95);
}
.grow-on-hover:hover {
transform: scale(1.05);
}
a {
text-decoration: none;
color: inherit;
}
a:hover{
2018-07-26 11:15:51 -07:00
color: rgba(143, 220, 151, 0.5);
}
/*
app
*/
.active {
color: #909090;
}
2016-05-13 18:07:47 -07:00
button.primary {
padding: 8px 12px;
background: #F7861C;
box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36);
color: white;
font-size: 1.1em;
font-family: 'Nunito Regular';
2018-07-26 04:42:04 -07:00
text-transform: none;
2016-05-13 18:07:47 -07:00
}
button.btn-thin {
border: 1px solid;
border-color: #4D4D4D;
color: #4D4D4D;
background: rgb(255, 174, 41);
border-radius: 4px;
min-width: 200px;
margin: 12px 0;
padding: 6px;
font-size: 13px;
}
2016-12-16 10:04:57 -08:00
.app-header {
padding: 6px 8px;
}
.app-header h1 {
2018-07-26 11:15:51 -07:00
font-family: 'Nunito Regular';
text-transform: uppercase;
color: #AEAEAE;
2018-07-26 11:15:51 -07:00
background: #ffffff;
}
h2.page-subtitle {
2018-07-26 11:15:51 -07:00
font-family: 'Nunito Regular';
color: #333333;
font-size: 1em;
margin: 12px;
}
.app-footer {
padding-bottom: 10px;
align-items: center;
}
.identicon {
height: 46px;
width: 46px;
background-size: cover;
border-radius: 100%;
border: 3px solid gray;
}
2018-07-26 15:54:07 -07:00
textarea {
border: 1px solid #e2e2e2;
2018-07-26 17:16:24 -07:00
border-radius: 3px;
2018-07-26 15:54:07 -07:00
}
textarea.twelve-word-phrase {
font-family: 'Nunito Regular';
padding: 12px;
width: 300px;
height: 140px;
font-size: 14px;
background: white;
resize: none;
}
.network-indicator {
display: flex;
align-items: center;
font-size: 0.6em;
}
.network-name {
width: 5.2em;
line-height: 9px;
2016-06-30 12:43:28 -07:00
text-rendering: geometricPrecision;
}
.check {
2017-08-03 18:50:29 -07:00
margin-left: 12px;
2018-07-26 11:15:51 -07:00
color: #8fdc97;
flex: 1 0 auto;
display: flex;
justify-content: flex-end;
}
/*
app sections
*/
/* initialize */
.initialize-screen hr {
width: 60px;
margin: 12px;
border-color: #F7861C;
border-style: solid;
}
.initialize-screen label {
margin-top: 20px;
}
.initialize-screen button.create-vault {
margin-top: 40px;
}
.initialize-screen .warning {
font-size: 14px;
margin: 0 16px;
}
/* unlock */
.error {
color: #db60a4;
margin-bottom: 9px;
}
.warning {
2018-07-26 11:15:51 -07:00
color: #8fdc97;
}
2018-03-13 17:47:08 -07:00
.dropped {
color: #6195ED;
}
.lock {
width: 50px;
height: 50px;
}
.lock.locked {
transform: scale(1.5);
opacity: 0.0;
transition: opacity 400ms ease-in, transform 400ms ease-in;
}
.lock.unlocked {
transform: scale(1);
opacity: 1;
transition: opacity 500ms ease-out, transform 500ms ease-out, background 200ms ease-in;
}
.lock.locked .lock-top {
transform: scaleX(1) translateX(0);
transition: transform 250ms ease-in;
}
.lock.unlocked .lock-top {
transform: scaleX(-1) translateX(-12px);
transition: transform 250ms ease-in;
}
.lock.unlocked:hover {
border-radius: 4px;
background: #e5e5e5;
border: 1px solid #b1b1b1;
}
.lock.unlocked:active {
background: #c3c3c3;
}
.fa-arrow-left {
content: url('../images/icon-back.svg');
2018-07-27 09:52:28 -07:00
width: 14px;
height: 14px;
}
.fa-clipboard {
content: url('../images/copy.svg');
2018-07-27 09:52:28 -07:00
width: 14px;
height: 14px;
}
.sandwich-expando {
2018-07-31 10:39:02 -07:00
background-image: url('../images/menu.svg');
background-size: 14px 12px;
background-repeat: no-repeat;
background-position: right;
2018-07-27 09:52:28 -07:00
}
2018-07-31 10:39:02 -07:00
.sandwich-expando.expanded {
background-image: url('../images/close.svg');
background-size: 12px 12px;
background-repeat: no-repeat;
background-position: right;
2018-07-27 09:52:28 -07:00
}
@media (min--moz-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6/2),
(-webkit-min-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx) {
.logo {
background-image: url(../images/logo-1@2x.png);
background-size: 146px 134px;
}
}
.logo {
background-image: url(../images/logo-1.png);
background-repeat: no-repeat;
width: 146px;
height: 134px;
margin-top: 30px;
}
.selected-network {
width: 4px;
height: 26px;
background: #8fdc97;
position: absolute;
left: 0;
}
.section-title {
border-top: 1px solid #e2e2e2;
}
2018-08-01 08:57:48 -07:00
.trash {
content: url('../images/close.svg');
width: 12px;
height: 12px;
}
.section-title .fa-arrow-left {
/*margin: -2px 8px 0px -8px;*/
}
2016-05-13 18:07:47 -07:00
.unlock-screen #metamask-mascot-container {
margin-top: 80px;
2016-05-13 18:07:47 -07:00
}
.unlock-screen h1 {
margin-top: -28px;
margin-bottom: 42px;
}
.unlock-screen input[type=password] {
2018-07-26 17:16:24 -07:00
width: 210px;
border-radius: 3px;
border: none;
2016-05-18 12:13:19 -07:00
/*height: 36px;
2016-05-13 18:07:47 -07:00
margin-bottom: 24px;
2016-05-18 12:13:19 -07:00
padding: 8px;*/
}
2016-06-12 10:22:03 -07:00
.sizing-input{
font-size: 14px;
2018-07-26 13:31:11 -07:00
height: 32px;
padding-left: 5px;
2018-07-26 13:31:11 -07:00
border-radius: 3px;
border: 1px solid #e2e2e2;
}
.editable-label{
display: flex;
margin-bottom: 10px;
}
.editable-button{
margin-left: 10px;
}
2016-05-13 18:07:47 -07:00
/* Webkit */
2016-05-18 12:13:19 -07:00
.unlock-screen input::-webkit-input-placeholder {
text-align: left;
font-size: 14px;
2016-05-13 18:07:47 -07:00
}
/* Firefox 18- */
2016-05-18 12:13:19 -07:00
.unlock-screen input:-moz-placeholder {
text-align: left;
font-size: 14pxm;
2016-05-13 18:07:47 -07:00
}
/* Firefox 19+ */
2016-05-18 12:13:19 -07:00
.unlock-screen input::-moz-placeholder {
text-align: left;
font-size: 14px;
2016-05-13 18:07:47 -07:00
}
/* IE */
2016-05-18 12:13:19 -07:00
.unlock-screen input:-ms-input-placeholder {
text-align: left;
font-size: 14px;
}
2016-05-18 12:13:19 -07:00
input.large-input, textarea.large-input {
/*margin-bottom: 24px;*/
padding: 10px;
2018-07-26 17:16:24 -07:00
border-radius: 3px;
border: 1px solid #e2e2e2;
font-family: 'Nunito Regular';
font-size: 14px;
2016-05-18 12:13:19 -07:00
}
input.large-input {
2018-07-26 15:54:07 -07:00
height: 32px;
2016-05-18 12:13:19 -07:00
}
.letter-spacey {
letter-spacing: 0.1em;
}
2018-07-26 17:16:24 -07:00
.in-progress-notification {
color: #db60a4;
2018-07-26 17:16:24 -07:00
}
2016-05-18 12:13:19 -07:00
/* accounts */
.accounts-section {
margin: 0 0px;
}
.accounts-section .horizontal-line {
2018-07-26 15:54:07 -07:00
margin: 0px 20px;
}
.accounts-list-option {
height: 120px;
}
.accounts-list-option .identicon-wrapper {
width: 100px;
}
.unconftx-link {
margin-top: 24px;
cursor: pointer;
}
.unconftx-link .fa-arrow-right {
margin: 0px -8px 0px 8px;
}
.white-arrow-left {
content: url('../images/arrow-left-white.svg');
width: 14px;
height: 14px;
}
.white-arrow-right {
content: url('../images/arrow-right-white.svg');
width: 14px;
height: 14px;
}
/* identity panel */
.identity-panel {
font-weight: 500;
}
.identity-panel .identicon-wrapper {
2018-07-31 06:12:12 -07:00
margin-bottom: 10px;
margin-top: 10px;
display: flex;
align-items: center;
}
.identity-panel .identicon-wrapper span {
margin: 0 auto;
}
.identity-panel .identity-data {
margin: 8px 8px 8px 18px;
}
.identity-panel i {
margin-top: 32px;
margin-right: 6px;
color: #ffffff;
}
.identity-panel .arrow-right {
padding-left: 18px;
width: 42px;
min-width: 18px;
height: 100%;
}
.identity-copy.flex-column {
flex: 0.25 0 auto;
justify-content: center;
}
/* accounts screen */
.identity-section {
}
.identity-section .identity-panel {
background: #E9E9E9;
border-bottom: 1px solid #B1B1B1;
cursor: pointer;
}
.identity-section .identity-panel.selected {
background: white;
color: #F3C83E;
}
.identity-section .identity-panel.selected .identicon {
border-color: orange;
}
.identity-section .accounts-list-option:hover,
.identity-section .accounts-list-option.selected {
background:white;
}
/* account detail screen */
.account-detail-section {
2017-07-24 17:04:13 -07:00
display: flex;
flex-wrap: wrap;
overflow-x: hidden;
overflow-y: auto;
max-height: 585px;
flex-direction: inherit;
}
.grow-tenx {
flex-grow: 10;
}
.name-label{
2016-06-30 11:15:32 -07:00
}
.unapproved-tx-icon {
2017-02-23 17:45:37 -08:00
height: 16px;
width: 16px;
background: rgb(47, 174, 244);
2017-02-01 11:54:01 -08:00
border-color: #AEAEAE;
border-radius: 13px;
}
2018-07-31 07:42:04 -07:00
.tx-warning {
width: 60px;
height: 60px;
border-radius: 30px;
background: #6729a8;
background-image: url('../images/invalid-name.svg');
background-size: 2px 18px;
background-position: center;
background-repeat: no-repeat;
line-height: 60px;
}
2018-07-30 10:31:25 -07:00
.cell.label {
font-family: 'Nunito Regular';
font-size: 14px;
white-space: nowrap;
2018-07-30 10:31:25 -07:00
}
.cell.value {
font-family: 'Nunito Bold';
font-size: 14px;
}
2016-06-06 00:14:10 -07:00
.edit-text {
2016-06-09 20:58:33 -07:00
height: 100%;
2016-06-06 00:14:10 -07:00
visibility: hidden;
}
.editing-label {
2016-06-30 12:43:28 -07:00
display: flex;
justify-content: flex-start;
margin-left: 50px;
margin-bottom: 2px;
font-size: 11px;
text-rendering: geometricPrecision;
2018-07-26 11:15:51 -07:00
color: #60db97;
2016-06-06 00:14:10 -07:00
}
2016-06-09 20:58:33 -07:00
.name-label:hover .edit-text {
2016-06-06 00:14:10 -07:00
visibility: visible;
}
/* tx confirm */
.unconftx-section input[type=password] {
height: 22px;
padding: 2px;
margin: 12px;
margin-bottom: 24px;
border-radius: 4px;
border: 2px solid #F3C83E;
background: #FAF6F0;
}
2016-05-18 12:13:19 -07:00
/* Send Screen */
.send-screen {
}
.send-screen section {
2018-07-26 15:54:07 -07:00
margin: 10px 30px;
2016-05-18 12:13:19 -07:00
}
.send-screen input {
width: 100%;
2018-07-26 15:54:07 -07:00
font-size: 14px;
border: 1px solid #e2e2e2;
border-radius: 3px;
2016-05-18 12:13:19 -07:00
}
2016-05-18 13:41:08 -07:00
/* Ether Balance Widget */
.ether-balance-label {
color: #ABA9AA;
}
2016-06-08 12:13:45 -07:00
.icon-size{
width: 20px;
}
.info{
font-family: 'Nunito Regular';
2016-06-08 12:13:45 -07:00
padding-bottom: 10px;
2016-06-08 16:08:55 -07:00
display: inline-block;
padding-left: 5px;
2016-06-08 12:13:45 -07:00
}
2016-08-10 13:43:01 -07:00
/* buy eth warning screen */
.custom-radios {
justify-content: space-around;
align-items: center;
}
.custom-radio-selected {
width: 17px;
height: 17px;
border: solid;
border-style: double;
border-radius: 15px;
border-width: 5px;
2018-07-27 09:52:28 -07:00
background: #8fdc97;
border-color: #F7F7F7;
}
.custom-radio-inactive {
width: 14px;
height: 14px;
border: solid;
border-width: 1px;
border-radius: 24px;
border-color: #AEAEAE;
}
.radio-titles {
2018-07-27 09:52:28 -07:00
color: #8fdc97;
}
.radio-titles-subtext {
}
.selected-exchange {
}
.buy-radio {
}
2016-08-10 13:43:01 -07:00
.eth-warning{
transition: opacity 400ms ease-in, transform 400ms ease-in;
}
.buy-subview{
transition: opacity 400ms ease-in, transform 400ms ease-in;
}
.input-container:hover .edit-text{
visibility: visible;
}
.buy-inputs{
font-family: 'Nunito Light';
2016-08-10 13:43:01 -07:00
font-size: 13px;
height: 20px;
background: transparent;
box-sizing: border-box;
border: solid;
border-color: transparent;
border-width: 0.5px;
border-radius: 2px;
}
.input-container:hover .buy-inputs{
box-sizing: inherit;
border: solid;
border-color: #F7861C;
border-width: 0.5px;
border-radius: 2px;
}
.buy-inputs:focus{
border: solid;
border-color: #F7861C;
border-width: 0.5px;
border-radius: 2px;
}
.activeForm {
2018-07-26 11:15:51 -07:00
background: #ffffff;
color: #333333;
2016-08-10 13:43:01 -07:00
border: none;
border-radius: 8px 8px 0px 0px;
width: 50%;
text-align: center;
}
.inactiveForm {
2018-07-26 11:15:51 -07:00
background: #60269c;
color: #ffffff;
2016-08-10 13:43:01 -07:00
border: none;
border-radius: 8px 8px 0px 0px;
width: 50%;
text-align: center;
}
.ex-coins {
font-family: 'Nunito Regular';
2016-08-10 13:43:01 -07:00
text-transform: uppercase;
text-align: center;
font-size: 33px;
width: 118px;
height: 42px;
padding: 1px;
color: #4D4D4D;
}
.marketinfo{
font-family: 'Nunito light';
2016-08-10 13:43:01 -07:00
color: #AEAEAE;
font-size: 15px;
line-height: 17px;
2016-08-10 13:43:01 -07:00
}
#fromCoin::-webkit-calendar-picker-indicator {
display: none;
}
#coinList {
width: 400px;
height: 500px;
overflow: scroll;
}
.icon-control .fa-refresh{
visibility: hidden;
}
.icon-control:hover .fa-refresh{
visibility: visible;
}
.icon-control:hover .fa-chevron-right{
visibility: hidden;
}
.inactive {
color: #AEAEAE;
}
.inactive button{
background: #AEAEAE;
color: white;
}
.ellip-address {
overflow: hidden;
text-overflow: ellipsis;
width: 5em;
font-size: 14px;
2018-07-26 15:54:07 -07:00
font-family: "Nunito Regular";
margin-left: 5px;
2018-07-26 15:54:07 -07:00
color: #777777;
}
.qr-header {
2018-07-26 15:54:07 -07:00
font-family: "Nunito SemiBold";
font-size: 16px;
margin-top: 30px;
}
.qr-message {
font-size: 12px;
color: #F7861C;
}
div.message-container > div:first-child {
margin-top: 18px;
font-size: 15px;
color: #4D4D4D;
}
2016-08-18 15:20:26 -07:00
.pop-hover:hover {
transform: scale(1.1);
}
//Notification Modal
.notification-modal-wrapper {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
position: relative;
border: 1px solid #dedede;
box-shadow: 0 0 2px 2px #dedede;
font-family: Roboto;
}
.notification-modal-header {
background: #f6f6f6;
width: 100%;
display: flex;
justify-content: center;
padding: 30px;
font-size: 22px;
color: #1b344d;
height: 79px;
}
.notification-modal-message {
padding: 20px;
}
.notification-modal-message {
width: 100%;
display: flex;
justify-content: center;
font-size: 17px;
color: #1b344d;
}
.modal-close-x::after {
content: '\00D7';
font-size: 2em;
color: #9b9b9b;
position: absolute;
top: 25px;
right: 17.5px;
font-family: sans-serif;
cursor: pointer;
2018-02-08 09:18:25 -08:00
}
.notification-modal__wrapper {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
position: relative;
border: 1px solid #dedede;
box-shadow: 0 0 2px 2px #dedede;
font-family: Roboto;
}
.notification-modal__header {
background: #f6f6f6;
width: 100%;
display: flex;
justify-content: center;
padding: 30px;
font-size: 22px;
color: #1b344d;
height: 79px;
}
.notification-modal__message {
padding: 20px;
width: 100%;
display: flex;
justify-content: center;
font-size: 17px;
color: #1b344d;
}
.notification-modal__buttons {
display: flex;
justify-content: space-evenly;
width: 100%;
margin-bottom: 24px;
padding: 0px 42px;
}
.notification-modal__buttons__btn {
cursor: pointer;
}
.notification-modal__link {
color: #2f9ae0;
}