add style on add wallet section

This commit is contained in:
bechi 2014-12-18 16:02:06 -03:00
parent 0bc44ad3f5
commit a769b8318d
2 changed files with 21 additions and 11 deletions

View File

@ -315,6 +315,17 @@
margin-right: 5px;
}
.add-wallet .button-setup {
border: 1px solid #7A8C9E;
border-radius: 5px;
color: #4B6178;
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>