Merge pull request #8 from bechi/cmgustavo/add-section

add wallet screen
This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-18 17:02:51 -03:00
commit 6effbe361e
3 changed files with 23 additions and 12 deletions

View File

@ -315,6 +315,17 @@
margin-right: 5px;
}
.add-wallet .button-setup {
border: 1px solid #A5B2BF;
border-radius: 5px;
color: #7A8C9E;
text-align: center;
padding: 2rem;
margin: 2rem 0;
text-transform: uppercase;
font-size: 16px;
}
.modal.fade, .reveal-modal-bg {
opacity: 1;
}

View File

@ -1,17 +1,16 @@
<div class="small-12 columns">
<h1>Add Wallet</h1>
<a class="panel db oh" title="Create new wallet" ng-click="$root.go('create')">
<span class="text-black left">Create new wallet</span>
<i class="icon-arrow-right3 right text-gray"></i>
<div class="small-12 columns add-wallet">
<a class="button-setup db oh" title="Create new wallet" ng-click="$root.go('create')">
<i class="fi-plus"></i>
<span>Create new wallet</span>
</a>
<a class="panel db oh" title="Join shared wallet" ng-click="$root.go('join')">
<span class="text-black left">Join shared wallet</span>
<i class="icon-arrow-right3 right text-gray"></i>
<a class="button-setup db oh" title="Join shared wallet" ng-click="$root.go('join')">
<i class="icon-people"></i>
<span>Join shared wallet</span>
</a>
<a class="panel db oh" title="Import wallet" ng-click="$root.go('import')">
<span class="text-black left">Import wallet</span>
<i class="icon-arrow-right3 right text-gray"></i>
<a class="button-setup db oh" title="Import wallet" ng-click="$root.go('import')">
<i class="icon-upload"></i>
<span>Import wallet</span>
</a>
</div>

View File

@ -56,3 +56,4 @@
</a>
</div>
</div>