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

395 lines
5.8 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 {
font-family: 'Transat Standard', Arial;
color: #4D4D4D;
font-weight: 300;
line-height: 1.4em;
2016-05-13 18:07:47 -07:00
background: #F7F7F7;
}
2016-05-18 12:13:19 -07:00
input:focus, textarea:focus {
2016-05-13 18:07:47 -07:00
outline: none;
}
#app-content {
overflow-x: hidden;
min-width: 357px;
width: 360px;
height: 500px;
}
button {
2016-05-11 02:11:31 -07:00
font-family: 'Transat Black';
outline: none;
cursor: pointer;
2016-05-18 12:13:19 -07:00
/*margin: 10px;*/
2016-05-11 02:11:31 -07:00
padding: 8px 12px;
border: none;
background: #F7861C;
color: white;
transform-origin: center center;
transition: transform 50ms ease-in;
}
2016-05-11 02:11:31 -07:00
button:hover {
transform: scale(1.1);
}
button:active {
transform: scale(0.95);
}
a {
text-decoration: none;
color: inherit;
}
a:hover{
color: #df6b0e;
}
/*
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: 'Transat Standard';
text-transform: uppercase;
}
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;
}
.app-header {
padding: 6px 8px;
}
.app-header h1 {
font-family: 'Transat Medium';
text-transform: uppercase;
color: #AEAEAE;
}
h2.page-subtitle {
font-family: 'Transat Light';
text-transform: uppercase;
color: #AEAEAE;
font-size: 1em;
margin: 12px;
}
.app-primary {
2016-05-13 18:07:47 -07:00
}
.app-footer {
padding-bottom: 10px;
align-items: center;
}
.identicon {
height: 46px;
width: 46px;
background-size: cover;
border-radius: 100%;
border: 3px solid gray;
}
textarea.twelve-word-phrase {
margin-top: 20px;
width: 300px;
height: 180px;
font-size: 16px;
background: #FAF6F0;
resize: none;
}
/*
app sections
*/
/* initialize */
.initialize-screen hr {
width: 60px;
margin: 12px;
border-color: #F3C83E;
border-style: solid;
}
.initialize-screen input[type="password"], .initialize-screen textarea {
width: 300px;
padding: 6px;
border-radius: 6px;
border-style: solid;
outline: none;
border: 1px solid #F5A623;
background: #FAF6F0;
}
.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: #E20202;
}
.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;
}
.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: 24px;
}
.unlock-screen h1 {
margin-top: -28px;
margin-bottom: 42px;
}
.unlock-screen input[type=password] {
2016-05-13 18:07:47 -07:00
width: 260px;
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-05-13 18:07:47 -07:00
/* Webkit */
2016-05-18 12:13:19 -07:00
.unlock-screen input::-webkit-input-placeholder {
2016-05-13 18:07:47 -07:00
text-align: center;
font-size: 1.2em;
}
/* Firefox 18- */
2016-05-18 12:13:19 -07:00
.unlock-screen input:-moz-placeholder {
2016-05-13 18:07:47 -07:00
text-align: center;
font-size: 1.2em;
}
/* Firefox 19+ */
2016-05-18 12:13:19 -07:00
.unlock-screen input::-moz-placeholder {
2016-05-13 18:07:47 -07:00
text-align: center;
font-size: 1.2em;
}
/* IE */
2016-05-18 12:13:19 -07:00
.unlock-screen input:-ms-input-placeholder {
2016-05-13 18:07:47 -07:00
text-align: center;
font-size: 1.2em;
}
2016-05-18 12:13:19 -07:00
input.large-input, textarea.large-input {
/*margin-bottom: 24px;*/
padding: 8px;
}
input.large-input {
height: 36px;
}
/* accounts */
.accounts-section {
margin: 0 0px;
}
.accounts-section .horizontal-line {
margin: 0px 18px;
}
.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;
}
/* identity panel */
.identity-panel {
font-weight: 500;
}
.identity-panel .identicon-wrapper {
margin: 4px;
margin-top: 8px;
}
.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: #B9B9B9;
}
.identity-panel .arrow-right {
padding-left: 18px;
width: 42px;
min-width: 18px;
height: 100%;
}
/* 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 {
}
/* tx confirm */
.unconftx-section {
margin: 0 20px;
}
.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 {
margin: 8px 16px;
}
.send-screen input {
width: 100%;
font-size: 12px;
letter-spacing: 0.1em;
}
2016-05-18 13:41:08 -07:00
/* Ether Balance Widget */
.ether-balance-amount {
color: #F7861C;
}
.ether-balance-label {
color: #ABA9AA;
}