copay/css/main.css

299 lines
5.0 KiB
CSS
Raw Normal View History

2014-04-01 08:16:33 -07:00
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 300;
src: local('Ubuntu Light'), local('Ubuntu-Light'), url(../font/ubuntu-light.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 400;
src: local('Ubuntu'), url(../font/ubuntu.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 700;
src: local('Ubuntu Bold'), local('Ubuntu-Bold'), url(../font/ubuntu-bold.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu';
font-style: italic;
font-weight: 700;
src: local('Ubuntu Bold Italic'), local('Ubuntu-BoldItalic'), url(../font/ubuntu-bold-italic.woff) format('woff');
}
2014-03-28 08:32:29 -07:00
* {
2014-04-01 08:16:33 -07:00
font-family: 'Ubuntu', Helvetica, sans-serif !important;
2014-03-28 08:32:29 -07:00
}
body {
2014-03-31 09:10:11 -07:00
background: #F5F5F5;
2014-03-28 08:32:29 -07:00
}
.top-bar-section li:not(.has-form) a:not(.button) {
2014-03-31 09:10:11 -07:00
line-height: 60px;
background: #FAE448;
2014-03-28 08:32:29 -07:00
}
.top-bar-section li.active:not(.has-form) a:not(.button) {
2014-03-31 09:10:11 -07:00
line-height: 60px;
background: #f5f5f5;
color: #111;
font-weight: 700;
2014-03-28 08:32:29 -07:00
}
.top-bar-section li.active:not(.has-form) a:not(.button):hover, .top-bar-section li:not(.has-form) a:not(.button):hover {
2014-03-31 09:10:11 -07:00
background: #111;
color: white;
2014-03-28 08:32:29 -07:00
}
.top-bar-section ul li>a {
2014-03-31 09:10:11 -07:00
color: #111;
text-transform: uppercase;
font-weight: 100;
font-size: 0.9rem;
2014-03-28 08:32:29 -07:00
}
.header {
2014-03-31 09:10:11 -07:00
background: #111;
color: white;
margin-bottom: 30px;
2014-03-28 08:32:29 -07:00
}
.header-content {
2014-03-31 14:06:44 -07:00
padding: 1.5rem 3rem 1.5rem 0;
2014-03-31 09:10:11 -07:00
overflow: hidden;
2014-03-28 08:32:29 -07:00
}
.header h1, h5 {
2014-03-31 09:10:11 -07:00
color: #fff;
2014-03-28 08:32:29 -07:00
}
.top-bar {
height: auto;
}
2014-03-31 14:06:44 -07:00
.panel {
2014-04-16 08:06:42 -07:00
color: #333;
2014-03-31 14:28:59 -07:00
background: #FFFFFF;
2014-04-07 11:05:53 -07:00
padding: 0.7rem 1rem;
border:0;
}
2014-04-21 09:23:39 -07:00
.panel.status {
margin: 0;
}
2014-04-17 14:11:42 -07:00
/*.panel:hover {
2014-04-16 06:52:13 -07:00
background: #efefef;
2014-04-16 08:06:42 -07:00
color: #111;
2014-04-17 14:11:42 -07:00
}*/
2014-04-16 08:06:42 -07:00
.addresses .panel {
2014-04-16 08:06:42 -07:00
font-size: 0.9rem;
2014-04-16 06:52:13 -07:00
}
2014-04-15 13:45:53 -07:00
.transactions .panel {
2014-04-21 09:23:39 -07:00
background: #f5f5f5;
2014-04-20 15:08:04 -07:00
border: 1px solid #eee;
2014-04-15 13:45:53 -07:00
}
.transactions .panel.pending {
background-color: #fff;
padding: 1rem;
}
2014-04-20 15:08:04 -07:00
.pending .txheader {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.pending .txbottom {
margin-top: 10px;
padding-top: 10px;
border-top: 1px solid #eee;
font-size: 12px;
}
.btransactions .panel {
background: #fff;
}
.btransactions .txheader {
font-size: 12px;
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.btransactions .txbottom {
margin-top: 10px;
padding-top: 10px;
border-top: 1px solid #eee;
font-size: 12px;
}
2014-04-20 15:08:04 -07:00
.pending table {
width: 100%;
border: none;
}
.addresses .panel:hover {
2014-04-08 10:16:38 -07:00
background: #efefef;
2014-03-31 14:06:44 -07:00
}
2014-04-03 12:32:17 -07:00
.box-backup {
margin: 2rem 0;
padding: 2rem 1rem;
}
a.box-backup {
display: block;
color: #111;
}
.box-backup i {
margin-bottom: 2rem;
display: block;
}
2014-04-15 11:07:41 -07:00
h3 {
font-weight: 100;
font-size: 25px;
}
.line-dashed-v {
border-right: 2px dashed #E3E3E3;
}
2014-04-15 13:45:53 -07:00
.line-dashed-h {
margin: 1rem 0;
border-bottom: 2px dashed #E3E3E3;
}
2014-04-15 11:07:41 -07:00
.panel p {
margin-bottom: 0;
2014-04-08 10:16:38 -07:00
}
2014-04-15 13:45:53 -07:00
span.panel-res {
float: right;
padding: 0.4rem 0.55rem;
margin: 0 1rem;
border-radius: 1rem;
}
.panel-sign {
color: #111;
background: #FAE448;
}
.panel-ignore {
color: #fff;
background: #111;
}
2014-04-08 10:16:38 -07:00
.pending button {
margin: 0;
}
.line {
2014-04-15 13:45:53 -07:00
border-top: 1px solid #f2f2f2;
margin: 0.5rem 0 1rem;
2014-04-08 10:16:38 -07:00
}
2014-04-16 13:25:33 -07:00
.share-wallet.panel {
background-color: #111;
color: #FBE500;
}
.alert-box.warning, .alert-box.error {
2014-04-17 14:11:42 -07:00
background-color: #C0392A;
border-color: #C0392A;
color: #fff;
}
.text-warning {
color:#C0392A;
}
small.is-valid {
color: #04B404;
font-weight: bold;
}
small.has-error {
color: #f04124;
font-weight: bold;
}
2014-04-20 15:39:16 -07:00
@media (max-width: 641px) {
.hide_menu {
display: none;
}
.show_menu {
display: block;
}
}
2014-04-21 09:23:39 -07:00
tr { background: none !important;}
2014-04-22 08:26:23 -07:00
table tr th, table tr td { padding: 0.5625rem 0rem; }
2014-04-17 14:11:42 -07:00
hr { margin: 2.25rem 0;}
2014-04-22 08:26:23 -07:00
table { margin-bottom: 0.25rem;}
2014-04-17 14:11:42 -07:00
2014-03-31 14:06:44 -07:00
button.primary { background-color: #111; }
button.secondary { background-color: #FAE448 !important; }
button.primary:hover { background-color: #333;}
2014-04-15 07:46:19 -07:00
button.secondary:hover { background-color: #FFDF00 !important;}
2014-03-31 14:06:44 -07:00
2014-04-24 18:43:19 -07:00
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
.dn {display: none;}
2014-04-22 08:26:23 -07:00
.text-gray { color: #999 !important;}
2014-04-15 13:45:53 -07:00
.pr {position: relative;}
2014-04-08 10:16:38 -07:00
.m0 {margin: 0;}
2014-04-07 11:05:53 -07:00
.db {display: block;}
2014-03-28 12:39:58 -07: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; }
.size-48 { font-size: 48px; }
.size-60 { font-size: 60px; }
.size-72 { font-size: 72px; }
2014-04-16 08:06:42 -07:00
.m10t {margin-top: 10px;}
2014-04-16 13:25:33 -07:00
.p0r {padding-right: 0;}
.p70r {padding-right: 70px;}
.p70l {padding-left: 70px;}
.p5h {padding: 0 5px;}
2014-04-17 14:11:42 -07:00
.p20h {padding: 0 20px;}
.m30v {margin: 30px 0;}
2014-04-21 09:23:39 -07:00
.m10h {margin:0 10px;}
2014-04-17 14:11:42 -07:00
.m30a {margin: 30px auto;}
.br100 {border-radius: 100%;}
2014-04-21 03:27:45 -07:00
.signin input.ng-dirty.ng-invalid {
border: 2px red solid;
}
2014-04-23 17:20:44 -07:00
.video-small {
2014-04-24 16:56:36 -07:00
width: 120px;
height: 120px;
margin: 20px;
display: inline;
float:left;
2014-04-23 17:20:44 -07:00
}
2014-04-24 16:56:36 -07:00
.online {
border: 10px solid green;
}
.offline {
border: 10px solid gray;
}
2014-04-23 17:20:44 -07:00