Wallet/css/src/main.css

1443 lines
24 KiB
CSS
Raw Normal View History

2014-08-21 13:08:11 -03:00
/*
*
* Copay main CSS
*
*/
2014-10-29 09:33:16 -03:00
2014-08-21 13:08:11 -03:00
::-webkit-input-placeholder {
color: #B7C2CD;
2014-08-21 13:08:11 -03:00
}
:-moz-placeholder { /* Firefox 18- */
color: #B7C2CD;
2014-08-21 13:08:11 -03:00
}
::-moz-placeholder { /* Firefox 19+ */
color: #B7C2CD;
2014-08-21 13:08:11 -03:00
}
:-ms-input-placeholder {
color: #B7C2CD;
2014-08-21 13:08:11 -03:00
}
#qr-canvas { display: none; }
#qrcode-scanner-video {
display: block;
margin: 0 auto;
}
* {
font-family: 'Ubuntu', Helvetica, sans-serif !important;
}
2014-10-31 15:17:39 -03:00
h1, h2, h3, h4, h5, h6, .panel h2 {
2014-08-21 13:08:11 -03:00
color: #2C3E50;
}
h1 {
font-weight: 100;
font-size: 24px;
margin-bottom: 1rem;
}
h2 {
font-size: 20px;
font-weight: 100;
}
h3 {
font-weight: 300;
font-size: 16px;
}
h4 {
font-size: 0.875rem;
}
body, html{
height:100%;
width:100%;
color: #2C3E50;
}
header {
2014-10-16 10:45:06 -03:00
background-color: #1ABC9C;
2014-10-20 18:44:24 -03:00
overflow: hidden;
}
header .creation {
color: white;
background: red;
font-weight: bold;
}
2014-10-17 11:37:41 -03:00
header .alt-currency {
2014-10-20 18:44:24 -03:00
background: #16A085;
}
.alt-currency {
background: #2C3E50;
2014-10-17 11:37:41 -03:00
padding: 0.05rem 0.2rem;
border-radius: 2px;
font-size: 10px;
}
2014-10-27 16:13:06 -03:00
.head {
2014-10-30 12:08:42 -03:00
padding: 0.9rem 0;
2014-10-29 09:33:16 -03:00
-moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.10);
box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.10);
2014-10-27 16:13:06 -03:00
background-color: #FFF;
height: 62px;
position: fixed;
z-index: 10;
left: 250px;
right: 0;
}
.head .title {
2014-10-27 16:13:06 -03:00
float: left;
2014-10-30 12:08:42 -03:00
padding-left: 2rem;
}
.head .title h1 {
2014-10-27 16:13:06 -03:00
margin: 0;
}
.head .menu {
float: right;
position: relative;
}
.head .menu a.dropdown {
display: block;
2014-10-30 12:08:42 -03:00
margin: 0 1rem 0 2rem;
height: 48px;
2014-10-27 16:13:06 -03:00
text-align: center;
}
.head .menu a.dropdown:hover,
.head .menu a.dropdown.hover {
border-bottom: 1px solid #fff;
2014-10-30 12:08:42 -03:00
top: 0;
2014-10-27 16:13:06 -03:00
}
.head .menu ul {
2014-10-30 16:46:39 -03:00
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
2014-10-27 16:13:06 -03:00
position: absolute;
2014-10-30 12:08:42 -03:00
right: 14px;
width: 220px;
2014-10-27 16:13:06 -03:00
list-style-type: none;
2014-10-30 14:26:11 -03:00
top: 47px;nt
2014-10-27 16:13:06 -03:00
}
.head .menu ul li.divider {
border-bottom: 1px solid #eee;
}
2014-10-27 16:13:06 -03:00
.head .menu ul.hover {
2014-10-29 09:33:16 -03:00
background: #FFFFFF;
2014-10-30 12:08:42 -03:00
-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
2014-10-27 16:13:06 -03:00
}
.head .menu ul li a {
display: block;
padding: 5px 10px;
}
.head .menu ul li a:hover {
background-color: #fff;
}
2014-10-20 18:44:24 -03:00
.col1 {
2014-10-22 15:03:28 -03:00
width: 56px;
2014-10-20 18:44:24 -03:00
float: left;
}
.col2 {
2014-10-22 15:03:28 -03:00
width: 164px;
2014-10-20 18:44:24 -03:00
float: left;
}
.col2_full {
width: 194px;
height: 62px;
}
2014-10-23 12:29:38 -03:00
.col3 a {
2014-10-29 09:33:16 -03:00
font-size: 20px;
2014-10-23 12:29:38 -03:00
display: block;
2014-10-22 15:03:28 -03:00
height: 62px;
width: 30px;
2014-10-20 18:44:24 -03:00
float: right;
background-color: #23C9A9;
2014-11-04 13:02:03 -03:00
padding: 16px 6px;
color: #B6E9DF;
}
.col3 a.selected {
background-color: #213140;
color: #3C4E60;
2014-10-20 18:44:24 -03:00
}
.col3 a.selected:hover {
2014-10-23 12:29:38 -03:00
background-color: #213140;
color: #fff;
2014-10-20 18:44:24 -03:00
}
2014-10-23 12:29:38 -03:00
.col3 a:hover {
background-color: #16A085;
color: #fff;
2014-10-20 18:44:24 -03:00
}
2014-08-21 13:08:11 -03:00
.off-canvas-wrap, .inner-wrap{
height:100%;
}
.tab-bar {
display: none;
}
a {
color: #3498DB;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill, input:-webkit-autofill:focus, textarea:-webkit-autofill:focus, select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px white inset;
}
2014-10-22 15:03:28 -03:00
2014-10-31 15:17:39 -03:00
.home-wallet .avatar-wallet {
background: #1ABC9C;
margin: 0;
width: 45px;
height: 45px;
font-size: 30px;
padding-top: 10px;
margin-right: 15px;
color: #FFF;
}
2014-10-22 15:03:28 -03:00
.side-nav.wallets .avatar-wallet{
2014-10-17 11:37:41 -03:00
background-color: #7A8C9E;
color: #213140;
2014-10-29 11:57:43 -03:00
padding: 0.35rem 0.5rem;
text-align: center;
margin-top: 6px;
2014-10-22 15:03:28 -03:00
width: 35px;
2014-10-17 11:37:41 -03:00
}
.avatar-wallet {
font-size: 20px;
font-weight: 700;
margin-top: 10px;
2014-10-22 15:03:28 -03:00
margin-left: 10px;
margin-right: 8px;
2014-10-29 11:57:43 -03:00
padding: 0.5rem 0.65rem;
2014-10-17 11:37:41 -03:00
background-color: #fff;
color: #1ABC9C;
border-radius: 3px;
line-height: 24px;
2014-10-29 11:57:43 -03:00
text-align: center;
2014-10-17 11:37:41 -03:00
}
2014-08-21 13:08:11 -03:00
.status {
2014-09-09 15:28:25 -03:00
-moz-box-shadow: inset 0px -1px 1px 0px rgba(159,47,34,0.30);
box-shadow: inset 0px -1px 1px 0px rgba(159,47,34,0.30);
color: #FFFFFF;
background-color: #D0021B;
position: absolute;
2014-09-09 15:28:25 -03:00
left: 250px;
right: 0;
2014-10-27 16:13:06 -03:00
top: 62px;
2014-11-07 18:41:45 -03:00
padding: 10px 0;
2014-10-27 16:13:06 -03:00
z-index: 9;
2014-11-07 18:41:45 -03:00
font-size: 14px;
2014-10-27 16:13:06 -03:00
text-align: center;
}
2014-11-07 18:41:45 -03:00
.status-first-line {
z-index: 9;
font-size: 16px;
}
2014-08-21 13:08:11 -03:00
.setup .comment {
font-size: 0.875rem;
color: #7A8C9E !important;
}
a:hover {
color: #2980b9;
}
.page, .main {
height:100%;
overflow-y: auto;
overflow-x: none;
background-color: #2C3E50;
}
.sidebar {
height:100%;
overflow-x: none;
}
.sidebar {
position: fixed;
width: 250px;
background-color: #2C3E50;
color: #fff;
line-height: 24px;
}
.button.small.side-bar {
padding: 0rem 0.4rem;
}
.waiting {
border: 2px solid #fff;
}
.online {
border: 2px solid #1ABC9C;
}
.offline {
border: 2px solid gray;
opacity: 0.4;
}
.main {
margin-left: 250px;
2014-11-03 17:55:46 -03:00
padding: 100px 1.5rem;
2014-08-21 13:08:11 -03:00
background-color: #F8F8FB;
}
.logo-setup {
text-align: center;
padding: 5rem 0 4rem;
color: #fff;
2014-09-30 15:33:28 -03:00
}
2014-08-21 13:08:11 -03:00
.box-setup {
2014-10-15 16:10:40 -03:00
padding: 1.3rem;
border-radius: 2px;
background: #FFFFFF;
-moz-box-shadow: 1px 1px 0px 0px #213140;
box-shadow: 1px 1px 0px 0px #213140;
2014-10-15 16:10:40 -03:00
}
.box-setup-footer {
overflow: hidden;
padding: 1rem 0 0;
border-top: 1px solid #E5E7EA;
font-size: 12px;
2014-08-21 13:08:11 -03:00
}
.last-transactions {
margin-bottom: 2rem;
background-color: #E8EAEF;
}
.last-transactions-header {
padding: 0.5rem;
2014-08-21 13:08:11 -03:00
}
.last-transactions-footer {
padding: 0.5rem;
2014-08-21 13:08:11 -03:00
overflow: hidden;
}
.last-transactions-content {
overflow: hidden;
padding: 1rem;
background: #CED3DB;
}
table.last-transactions-content {
padding: 0;
border: 0;
2014-10-31 09:33:00 -03:00
background-color: #F8F8FB;
margin: 10px 0;
}
2014-08-21 13:08:11 -03:00
.last-transactions-content .box-status {
font-size: 13px;
width: 30px;
2014-09-09 15:28:25 -03:00
}
2014-08-21 13:08:11 -03:00
.last-transactions-content .box-copayer {
width: 100px;
margin-right: 20px;
float: left;
text-align: center;
}
.last-transactions-content .copayer-ico {
width: 45px;
height: 45px;
border: 2px solid #7A8C9B;
}
.last-transactions-content .icon-active {
2014-08-21 13:08:11 -03:00
color: #fff;
}
.last-transactions-content .icon-active-check {
2014-08-21 13:08:11 -03:00
background-color: #3FBC9C;
color: #fff;
}
.last-transactions-content .icon-active-x {
2014-08-21 13:08:11 -03:00
background-color: #C0392B;
color: #fff;
}
.private-message {
2014-09-29 18:50:19 -03:00
margin-bottom: 10px;
2014-11-04 15:14:42 -03:00
padding-bottom: 10px;
2014-09-29 18:50:19 -03:00
border-bottom: 1px solid #fff;
}
.header-message {
background-color: #F8F8FB;
height: 18px;
}
.date-message {
background-color: #3C4E60;
color: #fff;
2014-09-29 18:50:19 -03:00
font-size: 12px;
padding: 2px 5px;
-webkit-border-radius: 0 5px 0 0;
-moz-border-radius: 0 5px 0 0;
-ms-border-radius: 0 5px 0 0;
border-radius: 0 5px 0 0;
2014-09-25 18:19:09 -03:00
}
2014-08-21 13:08:11 -03:00
.input-note {
margin-top: -10px;
display: block;
margin-bottom: 1rem;
}
.send-note {
background-color: #EDEDF5;
padding: 10px;
margin-bottom: 10px;
2014-08-21 13:08:11 -03:00
}
.send-note p {
margin-bottom: 5px;
font-size: 12px;
}
.send-note b {
color: #000;
2014-08-21 13:08:11 -03:00
}
2014-10-17 11:37:41 -03:00
a.button-setup.add-wallet {
opacity: .5;
margin: 1rem auto;
2014-10-20 18:44:24 -03:00
width: 125px;
2014-10-17 11:37:41 -03:00
font-size: 14px;
padding: .3rem 0.7rem;
color: #fff;
2014-10-17 11:37:41 -03:00
}
a.button-setup.add-wallet:hover {
opacity: 1;
}
2014-10-15 16:10:40 -03:00
a.button-setup {
border-radius: 3px;
border: 1px solid #B7C2CE;
2014-08-21 13:08:11 -03:00
display: block;
2014-10-15 16:10:40 -03:00
padding: 0.5rem;
background: transparent;
2014-08-21 13:08:11 -03:00
}
.button-setup a:hover {
background: #3C4E60;
}
.dn {display: none;}
.pr {position: relative;}
.pa {position: absolute;}
.m0 {margin: 0;}
.p0 {padding: 0 !important;}
2014-08-21 13:08:11 -03:00
.db {display: block;}
2014-10-17 11:37:41 -03:00
.size-10 { font-size: 10px; }
2014-08-21 13:08:11 -03:00
.size-12 { font-size: 12px; }
.size-14 { font-size: 14px; }
.size-16 { font-size: 16px; }
.size-18 { font-size: 18px; }
.size-21 { font-size: 21px; }
.size-24 { font-size: 24px; }
.size-36 { font-size: 36px; }
2014-10-30 12:08:42 -03:00
.size-42 { font-size: 42px; }
2014-08-21 13:08:11 -03:00
.size-48 { font-size: 48px; }
.size-60 { font-size: 60px; }
.size-72 { font-size: 72px; }
2014-09-16 16:24:18 -03:00
.m3r {margin-right: 3px;}
2014-08-21 13:08:11 -03:00
.m5t {margin-top: 5px;}
.m10t {margin-top: 10px;}
.m5b {margin-bottom: 5px;}
.m5r {margin-right: 5px;}
.m10b {margin-bottom: 10px;}
2014-10-07 18:38:14 -03:00
.m15b {margin-bottom: 15px;}
.m20b {margin-bottom: 20px;}
2014-08-21 13:08:11 -03:00
.m10r {margin-right: 10px;}
.m15l {margin-left: 15px;}
.m15t {margin-top: 15px;}
.m20r {margin-right: 20px;}
.m15r {margin-right: 15px;}
.m20t {margin-top: 20px;}
.m10 {margin: 10px;}
.m15 {margin: 15px;}
.m15h {margin: 0 15px;}
.p10t {padding-top: 10px;}
.p0r {padding-right: 0;}
.p70r {padding-right: 70px;}
.p70l {padding-left: 70px;}
.p5h {padding: 0 5px;}
.p20h {padding: 0 20px;}
.p15 {padding:15px;}
.p20 {padding:20px;}
.p10 {padding:10px;}
2014-10-31 12:04:59 -03:00
.p10b {padding-bottom:10px;}
2014-08-21 13:08:11 -03:00
.m30v {margin: 30px 0;}
.m10h {margin:0 10px;}
.m10v {margin:10px 0;}
.m30a {margin: 30px auto;}
.m-negative-l {margin-left: -0.9375rem;}
.br100 {border-radius: 100%;}
.lh {line-height: 0;}
.oh {overflow:hidden;}
2014-10-29 09:33:16 -03:00
.vm {vertical-align: middle;}
2014-08-21 13:08:11 -03:00
.small {
font-size: 60%;
line-height: inherit;
}
.line-dashed-setup-v {
border-left: 1px dashed #415970;
}
.line-dashed-v {
border-right: 1px dashed #E3E3E3;
}
.line-dashed-h {
border-bottom: 1px dashed #E3E3E3;
}
.line {
2014-10-31 09:33:00 -03:00
border-top: 1px solid #F8F8FB;
2014-08-21 13:08:11 -03:00
margin: 0.7rem 0;
}
2014-10-31 09:33:00 -03:00
.line-t {
border-top: 1px solid #F8F8FB;
2014-08-21 13:08:11 -03:00
padding-top: 0.5rem;
}
2014-10-31 09:33:00 -03:00
.line-b {
border-bottom: 1px solid #F8F8FB;
2014-08-21 13:08:11 -03:00
padding-bottom: 0.5rem;
}
2014-10-30 12:08:42 -03:00
.p-dashed {
2014-10-07 18:38:14 -03:00
border-top: 1px dashed #3C5269;
2014-08-21 13:08:11 -03:00
margin: 1rem 0;
padding: 1rem 0;
overflow: hidden;
}
.name-wallet {
2014-10-20 18:44:24 -03:00
font-size: 14px;
2014-10-23 12:29:38 -03:00
width: 72%;
2014-10-20 18:44:24 -03:00
float: left;
color: #fff;
2014-08-21 13:08:11 -03:00
}
.name-wallet i {
color: #B6E9DF;
}
.name-wallet i:hover {
color: #fff;
}
2014-08-21 13:08:11 -03:00
.box-livenet {
background: #213140;
padding: 0rem 0.5rem 0.2rem;
color: #7A8C9E;
}
.founds {
font-weight: 100;
2014-10-17 11:37:41 -03:00
color: #B6E9DF;
2014-08-21 13:08:11 -03:00
}
.locked {
2014-10-30 14:26:11 -03:00
font-size: 11px;
background-color: #213140;
width: 100%;
2014-10-30 14:26:11 -03:00
padding: 0.3rem 0.7rem;
color: white;
}
2014-08-21 13:08:11 -03:00
.hidden {
visibility: hidden;
}
/* Turn Off Number Input Spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.spinner {
display: inline-block;
2014-08-21 13:08:11 -03:00
}
/* notifications */
.dr-notification-container {
position: absolute;
z-index: 10000;
}
.dr-notification-container.bottom {
bottom: 20px;
}
.dr-notification-container.right {
right: 0;
}
.dr-notification-container.left {
left: 20px;
}
.dr-notification-container.top {
top: 20px;
}
.dr-notification-container.center {
left: 50%;
margin-left: -190px;
}
.dr-notification-wrapper {
width: 360px;
position: relative;
margin: 10px 0;
}
.dr-notification {
width: 360px;
clear: both;
height: 90px;
overflow: hidden;
}
.dr-notification-close-btn {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
border-radius: 20px;
display: inline-block;
padding: 5px;
font-size: 12px;
position: absolute;
right: 350px;
top: -8px;
cursor: pointer;
z-index: 10;
}
.dr-notification-image {
width: 80px;
height: 90px;
float: left;
display: block;
font-size: 40px;
color: white;
text-align: center;
border-right: 1px dashed #415970;
}
.dr-notification-image i {
display: block;
width: 100%;
padding-top: 20px;
}
.dr-notification-image img {
margin: 15px;
max-width: 70px;
min-width: 48px;
}
.dr-notification-content {
padding-left: 90px;
padding-right: 10px;
padding-top: 5px;
}
.dr-notification-title {
color: white;
padding: 0px;
font-size: 18px;
margin-top: 0;
}
.dr-notification {
background-color: #34495E;
color: #eee;
border: 1px solid #2C3E50;
opacity: 0.9;
}
.dr-notification-close-btn {
background-color: #34495E;
color: #fff;
border: 1px solid #3C5269;
}
.dr-notification-image.dr-notification-type-info {
color: #FFF;
}
.dr-notification-image.dr-notification-type-warning {
color: #FFA226;
}
.dr-notification-image.dr-notification-type-error {
color: #FF4B4F;
}
.dr-notification-image.dr-notification-type-success {
color: #1ABC9C;
}
.dr-notification-image.success {
color: #1ABC9C;
}
.success {
color: #1ABC9C;
}
2014-10-15 16:10:40 -03:00
.bg-success {
background-color: #1ABC9C;
}
.addresses .label {
font-weight: normal;
padding: .2rem .3rem;
font-size: 8px;
}
2014-08-21 13:08:11 -03:00
.label.success {
background-color: #1ABC9C;
}
2014-10-30 16:46:39 -03:00
.label {
font-weight: 700;
padding: 0.3rem 0.4rem;
}
2014-08-21 13:08:11 -03:00
.label.alert {
background-color: #C0392A;
}
2014-10-15 16:10:40 -03:00
.bg-alert {
background-color: #C0392A;
}
2014-08-21 13:08:11 -03:00
.dr-notification-text {
font-size: 12px;
line-height: 120%;
}
.ellipsis {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
ul.pagination li.current a {
background: #1ABC9C;
}
ul.pagination li.current a:hover, ul.pagination li.current a:focus {
background: #16A085;
}
.tooltip {
background-color: #1ABC9C;
2014-08-21 13:08:11 -03:00
color: #fff;
font-size: 12px;
border-color: #16A085;
2014-08-21 13:08:11 -03:00
}
.tooltip>.nub {
border-color:transparent transparent #16A085 transparent;
}
.tooltip.tip-top>.nub {
border-color:#16A085 transparent transparent transparent;
}
.tooltip.tip-right>.nub {
border-color:transparent #16A085 transparent transparent;
}
.tooltip.tip-left>.nub {
border-color:transparent transparent transparent #16A085;
}
.tooltip.tip-bottom>.nub {
border-color:transparent transparent #16A085 transparent;
}
2014-08-21 13:08:11 -03:00
.has-tip {
border-bottom: none;
2014-08-21 13:08:11 -03:00
color: #7A8C9E;
cursor: inherit;
2014-08-21 13:08:11 -03:00
}
.logo {
background: transparent url('../img/logo-negative-beta.svg') no-repeat;
background-size: 130px 51px;
}
input {
border-radius: 2px;
background: #EDEDED;
-moz-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.09), inset 1px 1px 0px 0px rgba(0,0,0,0.05);
box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.09), inset 1px 1px 0px 0px rgba(0,0,0,0.05);
color: #2C3E42;
padding: 1.2rem 0.7rem;
margin-bottom: 1.5rem;
border: 0;
}
2014-08-21 13:08:11 -03:00
button.radius, .button.radius {
2014-10-15 16:10:40 -03:00
-webkit-border-radius: 3px;
border-radius: 3px;
2014-08-21 13:08:11 -03:00
}
label small.has-error {
font-size: 11px;
}
2014-11-13 12:36:30 -03:00
table { border-collapse: collapse; text-align: left; width: 100%; border: none;
box-shadow: -2px 1px 9px 1px #DDDDDD;
-webkit-box-shadow: -2px 1px 5px 1px #DDDDDD;
-moz-box-shadow: -2px 1px 5px 1px #DDDDDD;
-o-box-shadow: -2px 1px 5px 1px #DDDDDD;
}
thead tr{ text-transform: uppercase; border-top: 1px solid #FFFFFF; height: 46px}
2014-11-14 13:08:18 -03:00
table td, table th { padding: 15px 15px; height: 58px} }
2014-11-13 12:36:30 -03:00
table thead th {background-color: #F5F5F8; color:#949BAD; font-size: 13px; font-weight: normal; !important}
table tbody td { color: #000000; font-size: 14px;border-bottom: 1px solid #F1F1F3; }
table tbody tr:last-child td { border-bottom: none; }
2014-11-10 16:41:07 -03:00
table tr.active {
background: #CBECE6;
}
table tr.deleting {
background: #FCD5D5;
}
2014-08-21 13:08:11 -03:00
/* SECONDARY */
input[type='submit']
{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
2014-08-21 13:08:11 -03:00
button.secondary,
.button.secondary {
color: #fff;
2014-10-22 15:03:28 -03:00
background: #008CC1;
-moz-box-shadow: 1px 1px 0px 0px #10769D;
box-shadow: 1px 1px 0px 0px #10769D;
2014-08-21 13:08:11 -03:00
}
button.secondary:hover,
button.secondary:focus,
.button.secondary:hover,
.button.secondary:focus {
background-color: #2980B9;
color: #fff;
}
button.disabled.secondary,
button[disabled].secondary,
.button.disabled.secondary,
.button[disabled].secondary,
button.disabled.secondary:hover,
button.disabled.secondary:focus,
button[disabled].secondary:hover,
button[disabled].secondary:focus,
.button.disabled.secondary:hover,
.button.disabled.secondary:focus,
.button[disabled].secondary:hover,
.button[disabled].secondary:focus {
background-color: #95a5a6;
color: #E6E6E6;
}
/* PRIMARY */
button.primary,
.button.primary {
background-color: #1ABC9C;
color: #fff;
2014-10-15 16:10:40 -03:00
border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 1px 1px 0px 0px #16A085;
box-shadow: 1px 1px 0px 0px #16A085;
2014-08-21 13:08:11 -03:00
}
button.primary:hover,
button.primary:focus,
.button.primary:hover,
.button.primary:focus {
background-color: #16A085;
color: #fff;
}
button.disabled.primary,
button[disabled].primary,
.button.disabled.primary,
.button[disabled].primary,
button.disabled.primary:hover,
button.disabled.primary:focus,
button[disabled].primary:hover,
button[disabled].primary:focus,
.button.disabled.primary:hover,
.button.disabled.primary:focus,
.button[disabled].primary:hover,
.button[disabled].primary:focus {
2014-10-15 16:10:40 -03:00
-moz-box-shadow: 1px 1px 0px 0px #687D80;
box-shadow: 1px 1px 0px 0px #687D80;
2014-08-21 13:08:11 -03:00
background-color: #95a5a6;
color: #E6E6E6;
}
/* WARNING */
button.warning,
.button.warning {
background-color: #C0392A;
color: #fff;
2014-10-29 11:57:43 -03:00
border-radius: 2px;
-moz-box-shadow: 1px 1px 0px 0px #A02F23;
box-shadow: 1px 1px 0px 0px #A02F23;
2014-08-21 13:08:11 -03:00
}
button.warning:hover,
button.warning:focus,
.button.warning:hover,
.button.warning:focus {
background-color: #82251A;
color: #e6e6e6;
}
button.disabled.warning,
button[disabled].warning,
.button.disabled.warning,
.button[disabled].warning,
button.disabled.warning:hover,
button.disabled.warning:focus,
button[disabled].warning:hover,
button[disabled].warning:focus,
.button.disabled.warning:hover,
.button.disabled.warning:focus,
.button[disabled].warning:hover,
.button[disabled].warning:focus {
background-color: #95a5a6;
color: #E6E6E6;
}
/* WHITE */
button.white,
.button.white {
background-color: #fff;
color: #2C3E50;
}
button.white:hover,
button.white:focus,
.button.white:hover,
.button.white:focus {
background-color: #E0E0E0;
color: #2C3E50;
}
button.disabled.white,
button[disabled].white,
.button.disabled.white,
.button[disabled].white,
button.disabled.white:hover,
button.disabled.white:focus,
button[disabled].white:hover,
button[disabled].white:focus,
.button.disabled.white:hover,
.button.disabled.white:focus,
.button[disabled].white:hover,
.button[disabled].white:focus {
background-color: #95a5a6;
color: #E6E6E6;
}
/* BLACK */
button.black,
.button.black {
2014-10-22 15:03:28 -03:00
-moz-box-shadow: 1px 1px 0px 0px #1B2937;
box-shadow: 1px 1px 0px 0px #1B2937;
2014-08-21 13:08:11 -03:00
background-color: #2C3E50;
color: #fff;
}
button.black:hover,
button.black:focus,
.button.black:hover,
.button.black:focus {
background-color: #213140;
color: #fff;
}
button.disabled.black,
button[disabled].black,
.button.disabled.black,
.button[disabled].black,
button.disabled.black:hover,
button.disabled.black:focus,
button[disabled].black:hover,
button[disabled].black:focus,
.button.disabled.black:hover,
.button.disabled.black:focus,
.button[disabled].black:hover,
.button[disabled].black:focus {
background-color: #95a5a6;
color: #E6E6E6;
}
/* GRAY */
button.gray,
.button.gray {
background-color: #A9B2B8;
color: #2C3E50;
}
button.gray:hover,
button.gray:focus,
.button.gray:hover,
.button.gray:focus {
background-color: #E0E5E5;
color: #2C3E50;
}
2014-10-15 16:10:40 -03:00
.button, button {
text-transform: uppercase;
}
2014-11-04 17:57:23 -03:00
.side-nav.wallets li {
2014-11-10 15:48:51 -03:00
margin: 1.2rem .6rem;
padding: 0.3rem 0.1rem;
2014-11-04 17:57:23 -03:00
}
2014-10-17 11:37:41 -03:00
.side-nav.wallets {
2014-11-07 16:59:59 -03:00
z-index: 100;
2014-10-17 11:37:41 -03:00
background-color: #213140 ;
border-bottom: 1px solid #3A4E61;
overflow-y: auto;
2014-11-04 17:57:23 -03:00
position: absolute;
height: 0%;
width: 100%;
padding: 0;
}
2014-11-06 18:25:35 -03:00
.side-nav.wallets.pullDown {
2014-11-04 17:57:23 -03:00
height: 100%;
}
.side-nav.wallets.medium {
height: 280px;
2014-10-17 11:37:41 -03:00
}
.side-nav.wallets.large {
height: 380px;
}
.side-nav.wallets a.wallet-item,
.side-nav.wallets a.wallet-item:hover {
color: #7A8C9E;
2014-10-20 18:44:24 -03:00
line-height: 20px;
2014-10-17 11:37:41 -03:00
}
.side-nav.wallets .type-wallet {
color: #AAB1B9;
2014-10-17 11:37:41 -03:00
}
.side-nav .wallet-item {
padding: 4px 0;
2014-10-17 11:37:41 -03:00
}
2014-10-20 18:44:24 -03:00
.side-nav li.nav-item {
overflow: hidden;
}
2014-10-17 11:37:41 -03:00
2014-10-20 18:44:24 -03:00
.side-nav li.nav-item:hover {
2014-10-17 11:37:41 -03:00
background-color: #3C4E60;
2014-10-20 18:44:24 -03:00
overflow: hidden;
2014-10-17 11:37:41 -03:00
}
2014-11-12 17:44:50 -03:00
.fi-trash.text-gray:hover {
color: #CA5649;
}
2014-10-29 15:22:24 -03:00
.photo-container {
2014-10-30 12:08:42 -03:00
margin-right: 3px;
2014-10-29 15:22:24 -03:00
display: inline-block;
width: 35px;
height: 35px;
color: #fff;
background: #7A8C9E;
border-radius: 100%;
vertical-align: middle;
2014-10-31 18:35:44 -03:00
overflow: hidden;
text-align: center;
2014-10-29 15:22:24 -03:00
}
2014-11-12 17:44:50 -03:00
.photo-container.profile {
width: 80px;
height: 80px;
}
2014-10-29 15:22:24 -03:00
a:hover .photo-container {
background: #34495E;
color: #fff;
}
2014-10-17 11:37:41 -03:00
2014-08-21 13:08:11 -03:00
.side-nav li {
font-size: 16px;
line-height: 40px;
font-weight: 100;
2014-10-22 15:03:28 -03:00
margin-bottom: 10px;
2014-08-21 13:08:11 -03:00
}
2014-10-30 14:26:11 -03:00
.side-nav li>a:first-child:not(.button) {
padding-left: 40px;
}
2014-08-21 13:08:11 -03:00
.side-nav li.active>a:first-child:not(.button) {
color: #2C3E50;
background-color: #F8F8FB;
}
.side-nav li>a:first-child:not(.button), .side-nav li a:not(.button) {
color: #fff;
}
.side-nav li>a:first-child:not(.button) i {
opacity: 0.6;
}
.side-nav li.active>a:first-child:not(.button) i {
opacity: 1;
}
.side-nav li.active:hover a {
background-color: #F8F8FB;
}
.side-nav li:hover a {
background-color: #3C4E60;
}
.sidebar-footer {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
padding-bottom: 10px;
overflow-y: hidden;
}
2014-08-21 13:08:11 -03:00
.addresses ul {
margin-left: 0;
}
.addresses .list-addr i {
position: absolute;
2014-09-04 17:40:16 -03:00
top: -15px;
left: 0;
2014-08-21 13:08:11 -03:00
cursor: pointer;
}
.addresses .list-addr contact {
cursor: text;
}
.pointer {
cursor: pointer;
}
2014-09-02 10:48:22 -03:00
.copay-box {
width: 70px;
text-align: center;
margin-right: 20px;
float: left;
2014-08-21 13:08:11 -03:00
}
.icon-input {
position: absolute;
top: 11px;
right: 20px;
font-size: 16px;
color: #fff;
}
.icon-input .fi-check {
background-color: #1ABC9C;
padding: 0.2rem 0.4rem;
}
.icon-input .fi-x {
background-color: #C0392A;
padding: 0.2rem 0.4rem;
}
.box-status {
float: right;
}
.icon-status {
background-color: #34495E;
color: #7A8C9E;
border-radius: 100%;
padding: 0.17rem 0.3rem;
float: left;
margin-bottom: 0.2rem;
}
.has-error {
color: #C0392A;
}
.is-valid {
color: #1ABC9C;
}
input.ng-invalid-match, input.ng-invalid-match:focus {
border-color: red;
}
.black {
background-color: #2C3E50;
}
.text-light {font-weight: 100;}
.text-gray {color: #8597A7;}
.text-black {color: #2C3E50;}
.text-primary {color: #1ABC9C;}
.text-secondary {color: #3498DB;}
.text-white {color: #fff;}
.text-warning {color: #CA5649;}
a.text-gray:hover {color: #2C3E50;}
a.text-black:hover {color: #213140;}
a.text-primary:hover {color: #50E3C2;}
a.text-secondary:hover {color: #4A90E2;}
a.text-white:hover {color: #ccc;}
a.text-warning:hover {color: #FD7262;}
.box-setup-copayers {
2014-10-30 18:22:34 -03:00
background: #F8F8FB;
-moz-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.20);
box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.20);
2014-09-11 13:01:22 -03:00
margin-bottom: 15px;
2014-08-21 13:08:11 -03:00
}
2014-10-31 18:35:44 -03:00
.box-setup-copay-required .photo-container {
background-color: #1ABC9C;
2014-08-21 13:08:11 -03:00
}
.loading-screen {
text-align: center;
background-color: #1ABC9C;
width: 100%;
2014-10-23 09:56:47 -03:00
margin-top: 15%;
2014-08-21 13:08:11 -03:00
}
.loading-screen .spinner {
vertical-align: middle;
margin-right: 15px;
}
2014-08-21 13:08:11 -03:00
.box-setup .panel {
background-color: #2C3E50;
padding: 1rem;
border: 0;
}
.box-setup h3 {
color: #fff;
}
2014-10-15 16:10:40 -03:00
.box-setup h1 {
font-size: 16px;
text-transform: uppercase;
text-align: center;
}
2014-08-21 13:08:11 -03:00
.panel qrcode {
background-color: white;
}
.panel qrcode canvas {
width: 250px;
height: 250px;
2014-08-21 13:08:11 -03:00
}
.panel .secret {
overflow-wrap: break-word;
2014-09-01 12:37:14 -03:00
word-wrap: break-word;
text-align: center;
2014-08-21 13:08:11 -03:00
}
2014-10-22 15:03:28 -03:00
.panel {
border-radius: 3px;
background: #FFFFFF;
2014-10-30 18:22:34 -03:00
-moz-box-shadow: 1.5px 1.5px 0px 0px rgba(32,48,64,0.10);
box-shadow: 1.5px 1.5px 0px 0px rgba(32,48,64,0.10);
2014-10-22 15:03:28 -03:00
border: none;
}
2014-08-21 13:08:11 -03:00
/**** Copy to clipboard ****/
.btn-copy {
color: #9b9b9b;
display: inline-block;
height: 16px;
width: 16px;
outline: none;
vertical-align: sub;
background: transparent url('../img/icons/copy.png') center center no-repeat;
}
.btn-copied {
display: inline-block;
width: auto;
color: #16A085;
font-weight: bold;
font-size: 11px;
}
.btn-copy.zeroclipboard-is-hover { color: #000; }
.btn-copy.zeroclipboard-is-active { opacity: 1; }
.copayer-list-small-height {
display: none;
}
@media only screen and (min-width: 40.063em) {
dialog.tiny, .reveal-modal.tiny {
width: 50%;
margin-left: -25%;
}
}
@media (max-height: 380px) {
.sidebar-footer {
display: none;
2014-08-21 13:08:11 -03:00
}
}
.wide-page {
background-color: #2C3E50;
margin: 5% 0;
padding: 50px;
}
2014-09-04 17:40:16 -03:00
.collapse {
margin: auto;
max-width: 100%;
}
2014-11-05 11:47:46 -03:00
.w-popup-menu{
2014-11-04 19:45:37 -03:00
padding:0;
}
2014-11-10 11:43:52 -03:00
.w-popup-menu li {
2014-11-05 11:47:46 -03:00
width: 180px;
height: 180px;
2014-11-04 19:45:37 -03:00
overflow: hidden;
position: relative;
float: left;
background: #213140;
2014-11-05 11:47:46 -03:00
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
2014-11-04 19:45:37 -03:00
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
2014-11-05 17:04:48 -03:00
margin: 20px 26px 0 0;
2014-11-04 19:45:37 -03:00
}
2014-11-05 11:47:46 -03:00
.w-popup-menu li:last-child{
2014-11-04 19:45:37 -03:00
margin-right: 0px;
}
2014-11-05 11:47:46 -03:00
.w-popup-menu li a{
2014-11-04 19:45:37 -03:00
text-align: center;
width: 100%;
height: 100%;
display: block;
color: #333;
position: relative;
}
2014-11-10 11:43:52 -03:00
.w-popup-icon {
2014-11-05 17:04:48 -03:00
color: #c5e4f4 ;
font-size: 90px;
text-shadow: 1px 0 1px rgba(255,255,255,.7);
line-height: 150px;
position: absolute;
width: 58px;
left: 60px;
top: 14px;
text-align: center;
2014-11-04 19:45:37 -03:00
}
2014-11-10 11:43:52 -03:00
.w-popup-content {
position: absolute;
left: 0px;
width: 100%;
height: 50%;
top: 50%;
2014-11-04 19:45:37 -03:00
}
2014-11-10 11:43:52 -03:00
.w-popup-main {
color: #FFFFFF;
opacity: 0.6;
text-align: center;
margin-bottom: 5px;
}
.w-popup-sub {
text-align:center;
color: #FFFFFF;
line-height: 20px;
opacity: 0.8;
}
2014-11-05 11:47:46 -03:00
.w-popup-menu li:hover{
background-color: #34B191;
2014-11-04 19:45:37 -03:00
}
2014-11-10 11:43:52 -03:00
.w-popup-menu li:hover .w-popup-icon {
text-shadow: 0px 0px 20px #c5e4f4;
color: transparent;
}
.w-popup-menu li:hover .w-popup-main, .w-popup-menu li:hover .w-popup-sub {
color: #FFFFFF;
2014-11-04 19:45:37 -03:00
}
2014-11-10 11:43:52 -03:00