Wallet/css/src/mobile.css

532 lines
8.3 KiB
CSS
Raw Normal View History

2014-08-21 13:08:11 -03:00
/*
*
* Copay mobile CSS
*
*/
2015-01-29 01:56:32 -03:00
@media (max-width: 1024px) {
/* disabling text selection */
body {
2015-01-29 01:56:32 -03:00
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
input {
-webkit-user-select: auto !important;
-khtml-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}
* {
-webkit-user-drag: none;
-moz-user-drag: none;
-ms-user-drag: none;
user-drag: none;
}
/* END disabling text selection */
.inner-wrap {
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
}
2015-01-15 21:35:31 -02:00
body {
overflow: hidden;
-ms-content-zooming: none;
2015-01-29 01:56:32 -03:00
}
2014-08-21 13:08:11 -03:00
.loading-screen {
background-color: #2C3E50;
}
2014-08-21 13:08:11 -03:00
.logo-setup {
margin: 0 0 1rem 0;
2014-08-21 13:08:11 -03:00
}
.sidebar {
display: none;
}
.page, .main {
2015-01-15 17:16:51 -03:00
height: 100%;
2014-08-21 13:08:11 -03:00
}
.main {
margin-left: 0;
2015-01-15 17:16:51 -03:00
padding: 60px 0 80px 0;
}
2015-01-15 21:35:31 -02:00
/* Fix IE 10 */
2015-01-15 17:16:51 -03:00
.extra-margin-bottom {
display: block
height: 75px
overflow: hidden
clear: both
}
2015-01-15 21:35:31 -02:00
.main {
height: 99%
overflow: auto
}
/* Fix IE 11 */
_:-ms-fullscreen, :root .extra-margin-bottom {
display: block;
height: 75px;
overflow: hidden;
clear: both;
}
_:-ms-fullscreen, :root .main {
height: 99%;
overflow: auto;
}
2015-01-15 17:16:51 -03:00
/* Fix Firefox */
@-moz-document url-prefix() {
.extra-margin-bottom {
display: block;
height: 75px;
overflow: hidden;
clear: both;
}
2014-08-21 13:08:11 -03:00
}
.tab-bar {
display: block;
position: fixed;
width: 100%;
z-index: 5;
2015-01-30 16:36:55 -03:00
background: #2C3E50;
2014-08-21 13:08:11 -03:00
}
2014-11-22 17:34:28 -03:00
.bottom-bar {
display: block;
position: fixed;
bottom: 0;
width: 100%;
z-index: 5;
2014-11-25 10:49:07 -03:00
background: #2C3E50;
2014-11-22 17:34:28 -03:00
}
.home, .settings, .createProfile, .import-profile {
overflow: hidden;
padding: 1rem 0;
}
2015-02-04 14:41:15 -03:00
.modal-mobile {
padding: 60px 0.5rem;
}
2014-12-12 02:21:32 -03:00
.reveal-modal {
2015-02-04 14:41:15 -03:00
padding: 0;
2014-12-12 02:21:32 -03:00
}
2015-02-04 14:41:15 -03:00
.reveal-modal .close-reveal-modal, dialog .close-reveal-modal {
padding: 0.8rem;
position: relative;
background: #E4E8EC;
top: 0;
right: 0;
line-height: 0;
color: #7A8C9E;
border-radius: 3px;
}
2014-11-26 18:50:58 -03:00
header {
2015-01-18 18:47:04 -03:00
background-color: #2C3E50;
2015-01-15 11:16:59 -03:00
height: 120px;
2014-12-18 18:51:01 -03:00
width: 100%;
line-height: 110%;
2015-01-15 11:16:59 -03:00
padding: 1rem;
2014-12-17 21:57:44 -03:00
}
header .photo-container {
2015-01-15 11:16:59 -03:00
width: 45px;
height: 45px;
margin-bottom: 5px;
2014-11-26 18:50:58 -03:00
}
2014-12-04 17:50:04 -03:00
header h1 {
color: #fff;
text-align: center;
}
2015-02-02 15:55:56 -03:00
.amount {
background-color: #F1F3F5;
width: 100%;
text-align: center;
padding: 2.4rem 1rem;
margin-bottom: 15px;
}
2014-12-18 09:04:58 -03:00
.scroll-section {
2014-12-18 18:51:01 -03:00
position: absolute;
2015-01-15 11:16:59 -03:00
top: 120px;
overflow-y: auto;
2014-12-18 09:04:58 -03:00
}
2014-12-18 20:12:40 -03:00
.col2 {
width: 180px;
}
.col2 a.wallet-item {
padding: 0.15rem 0 0.3rem;
}
2014-11-26 18:50:58 -03:00
.col3 a {
height: 45px;
padding: 12px 5px;
}
2014-12-02 17:03:24 -03:00
.status {
bottom: 65px;
2014-12-02 17:03:24 -03:00
left: 0;
}
2014-12-04 17:50:04 -03:00
.right-off-canvas-menu {
background-color: #213140 ;
}
2014-08-21 13:08:11 -03:00
.left-off-canvas-menu {
2014-11-25 13:36:04 -03:00
background: #E4E8EC;
line-height: 24px;
2014-08-21 13:08:11 -03:00
}
.off-canvas-wrap,.inner-wrap{
height:100%;
}
.page{
height:100%;
}
2014-11-26 18:50:58 -03:00
2015-02-02 15:55:56 -03:00
.home-wallet .avatar-wallet {
padding: 1.7rem;
width: 90px;
height: 90px;
position: absolute;
top: -43px;
font-size: 35px;
border: 3px solid #fff;
2014-11-26 18:50:58 -03:00
}
2015-02-02 15:55:56 -03:00
.home-wallet .wallet-info {
margin-left: 100px;
}
2014-08-21 13:08:11 -03:00
.copayers {
position: relative;
padding: 0;
overflow-y: none;
}
ul.copayer-list img {
width: 30px;
height: 30px;
}
.setup-page {
height: 100%;
}
.hide-tab-bar {
display: none;
}
.tab-bar h1 {
2014-12-17 21:57:44 -03:00
font-weight: 700;
2014-11-26 18:50:58 -03:00
text-align: center;
2014-12-17 21:57:44 -03:00
text-transform: uppercase;
font-size: 14px;
2014-08-21 13:08:11 -03:00
}
ul.off-canvas-list li a {
2014-11-25 13:36:04 -03:00
font-size: 12px;
vertical-align: middle;
font-weight: 100;
2014-11-12 15:57:50 -03:00
border-bottom: transparent;
2014-08-21 13:08:11 -03:00
padding: 0.66667rem 1rem;
2014-11-25 13:36:04 -03:00
color: #7A8C9E;
border-top: 1px solid rgba(255,255,255,0.25);
2015-01-18 18:47:04 -03:00
-moz-box-shadow: none;
box-shadow: none;
2014-11-25 13:36:04 -03:00
}
ul.off-canvas-list li a i {
vertical-align: middle;
}
ul.off-canvas-list li a.wallet-item {
border: none;
-moz-box-shadow: none;
box-shadow: none;
2014-08-21 13:08:11 -03:00
}
ul.off-canvas-list li a i {
opacity: 0.6;
}
2015-01-13 15:31:56 -03:00
.buttons-sidebar {
color: #4B6178;
}
.buttons-sidebar .col1 i {
background-color: #fff;
color: #4B6178;
}
2014-11-22 17:34:28 -03:00
.bottombar-item a {
2014-11-25 10:49:07 -03:00
color: #7A8C9E;
padding: 0.5rem 0;
2014-11-22 17:34:28 -03:00
display: block;
2014-11-25 15:24:11 -03:00
border-bottom: 3px solid transparent;
2014-11-22 17:34:28 -03:00
}
.bottombar-item a.active {
2014-11-25 10:49:07 -03:00
color: #E4E8EC;
background-color: #213140;
border-bottom: 3px solid #1ABC9C;
2014-11-22 17:34:28 -03:00
}
2014-08-21 13:08:11 -03:00
.box-founds {
background-color: #213140;
}
2014-12-18 18:51:01 -03:00
.left-small {
2014-11-26 18:50:58 -03:00
border-right: none;
2014-08-21 13:08:11 -03:00
}
.right-small {
2014-11-26 18:50:58 -03:00
border-left: none;
}
.right-small a, .left-small a {
color: white;
}
2014-12-02 21:51:45 -03:00
.panel.last-transactions {
margin-bottom: 3.25rem;
}
2014-09-01 14:44:30 -03:00
.addresses .list-addr contact {
margin-left: 0;
font-size: 14px;
}
2014-12-02 21:51:45 -03:00
a.missing-copayers {
bottom: -34px;
text-align: center;
padding: .7rem;
width: 100%;
}
2014-10-07 18:35:22 -03:00
.button, button {
padding: 1rem 1.2rem 1.0625rem;
}
.box-setup {
margin-bottom: 50px;
2014-10-07 18:35:22 -03:00
}
.footer-setup {
margin-bottom: 50px;
2014-12-04 17:50:04 -03:00
}
2014-11-12 15:57:50 -03:00
2014-10-30 16:46:39 -03:00
.label {
font-size: 80%;
padding: 0.15rem 0.2rem;
}
2014-12-18 18:51:01 -03:00
.sidebar-mobile-wallets {
2014-12-17 21:57:44 -03:00
background: #E4E8EC;
}
.sidebar-mobile-wallets .avatar-wallet {
margin-top: 5px;
}
2014-12-18 20:12:40 -03:00
.sidebar-mobile-wallets li {
overflow: hidden;
padding:.6rem 0.4rem;
2014-12-18 20:12:40 -03:00
border-bottom: 1px solid #DDE2E7;
}
2014-12-18 18:51:01 -03:00
.sidebar-mobile-wallets li.nav-item.selected {
2014-12-19 12:37:15 -03:00
background-color: #fff;
}
/*
* Remove all vendors hover / shadow / fade
*/
2014-12-04 17:50:04 -03:00
2014-12-05 00:19:57 -03:00
.tooltip {
display: none !important;
}
.move-right .exit-off-canvas,
.move-left .exit-off-canvas {
box-shadow: none;
}
ul.off-canvas-list li a:hover {
background: none;
}
.side-nav li a:not(.button) {
padding: 0;
}
a, button, .button, input, textarea, select, .reveal-modal {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.modal.fade {
opacity: 1;
}
.modal.fade .modal-dialog, .modal.in .modal-dialog, .reveal-modal-bg {
-webkit-transition: none !important;
transition: none !important;
-webkit-transform: none !important;
transform: none !important;
}
.button.secondary:hover, button.secondary:hover {
background: #008CC1;
color: #fff;
}
.move-right .close-menu {
cursor: pointer;
box-shadow: none;
display: block;
position: absolute;
background: rgba(255,255,255,.2);
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1002;
}
/*******************************************/
2015-01-29 01:56:32 -03:00
.pin {
margin: 0 auto;
2015-02-10 16:49:15 -03:00
width: 35%;
2015-01-29 01:56:32 -03:00
text-align: center;
overflow: hidden;
}
.pin-box {
color: #fff;
2015-02-10 16:49:15 -03:00
font-size: 14px;
2015-01-29 01:56:32 -03:00
width: 25%;
float: left;
}
.pin-numbers {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
2015-02-10 16:49:15 -03:00
height: 72%;
margin-bottom: 1.5%;
2015-01-29 01:56:32 -03:00
}
.pin-button-bar {
height: 25%;
}
a.pin-button {
2015-02-10 16:49:15 -03:00
margin: 2.5%;
2015-01-29 01:56:32 -03:00
display: inline-block;
2015-02-10 16:49:15 -03:00
color: #CED5DC;
font-size: 150%;
border: 1px solid #4B6178;
border-radius: 100%;
width: 70px;
padding-top: 1.4rem;
height: 70px;
2015-01-29 01:56:32 -03:00
}
a.pin-button:active {
color: #fff;
2015-02-10 16:49:15 -03:00
background-color: #3E5367;
2015-01-29 01:56:32 -03:00
}
2015-02-10 16:49:15 -03:00
.icon-circle, .icon-circle-active {
color: #1ABC9C;
}
2014-08-21 13:08:11 -03:00
}
@media (max-width: 640px) {
.tx-comment {
border-top: 1px solid #eee;
padding-top: 10px;
margin-top: 10px;
}
.reveal-modal {
border: none;
}
.reveal-modal-bg {
position: absolute;
height: 0;
width: 0;
background: none;
display: none;
top: 0;
left: 0;
}
/* notifications */
.dr-notification {
width: 100%;
2015-01-23 17:12:00 -03:00
border-radius: 0;
2015-01-23 17:28:15 -03:00
box-shadow: none;
2015-01-29 12:57:11 -03:00
border-bottom: 1.5px solid #D6DBE0;
}
.dr-notification-container {
width: 100%;
}
.dr-notification-container.top {
top: 2.813rem;
}
.dr-notification-wrapper {
width: 100%;
margin: 0;
}
.dr-notification-close-btn {
font-size: 20px;
}
.dr-notification-image {
font-size: 30px;
}
.dr-notification-text {
2015-01-23 17:12:00 -03:00
font-size: 12px;
line-height: 120%;
}
}