Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
7cbc0132
Commit
7cbc0132
authored
7 years ago
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add basic styling to menu and dashboard
parent
abc46180
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
77 additions
and
8 deletions
+77
-8
dashboard.component.css
Breeze.UI/src/app/wallet/dashboard/dashboard.component.css
+31
-0
dashboard.component.html
Breeze.UI/src/app/wallet/dashboard/dashboard.component.html
+4
-4
menu.component.css
Breeze.UI/src/app/wallet/menu/menu.component.css
+18
-1
menu.component.html
Breeze.UI/src/app/wallet/menu/menu.component.html
+3
-3
styles.css
Breeze.UI/src/styles.css
+21
-0
No files found.
Breeze.UI/src/app/wallet/dashboard/dashboard.component.css
View file @
7cbc0132
.container
{
width
:
100%
;
}
#dashboard
{
padding-top
:
50px
!important
;
padding-left
:
100px
!important
;
border
:
2px
solid
;
border-color
:
#D5E3F0
;
background-color
:
#DAE6F2
;
height
:
200px
;
width
:
100%
;
}
#transactions
{
#transactions
{
padding-left
:
100px
!important
;
margin-top
:
10px
;
margin-top
:
10px
;
}
}
#sendButton
{
width
:
100px
;
font-family
:
"Lato Black"
;
color
:
#A1B0C3
;
background-color
:
white
;
border-radius
:
25px
;
}
#receiveButton
{
width
:
100px
;
font-family
:
"Lato Black"
;
color
:
white
;
background-color
:
#20B9FF
;
border-radius
:
25px
;
}
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/wallet/dashboard/dashboard.component.html
View file @
7cbc0132
<div
class=
"container"
>
<div
class=
"container
nopadding
"
>
<div
class=
"row"
>
<div
class=
"row
nopadding"
id=
"dashboard
"
>
<div
class=
"col"
>
<div
class=
"col"
>
<div>
Active Balance
</div>
<div>
Active Balance
</div>
<div>
Balance: {{confirmedBalance | coinNotation | coinAbbreviation}}
</div>
<div>
Balance: {{confirmedBalance | coinNotation | coinAbbreviation}}
</div>
...
@@ -11,8 +11,8 @@
...
@@ -11,8 +11,8 @@
</div>
</div>
<div
class=
"col"
>
<div
class=
"col"
>
<div>
<div>
<button
(
click
)="
openSendDialog
()"
class=
"btn"
>
SEND
</button>
<button
(
click
)="
openSendDialog
()"
class=
"btn"
id=
"sendButton"
>
Send
</button>
<button
(
click
)="
openReceiveDialog
()"
class=
"btn"
>
RECEIVE
</button>
<button
(
click
)="
openReceiveDialog
()"
class=
"btn"
id=
"receiveButton"
>
Receive
</button>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/wallet/menu/menu.component.css
View file @
7cbc0132
.navbar
{
.navbar
{
height
:
10
0px
;
height
:
6
0px
;
width
:
100%
;
width
:
100%
;
margin
:
0
;
margin
:
0
;
padding
:
0
;
padding
:
0
;
}
}
.nav-link
{
margin
:
0
auto
;
text-align
:
center
;
width
:
120px
;
background-color
:
white
;
color
:
black
;
border
:
none
;
}
.is-active
{
background-color
:
white
;
color
:
#FF9900
;
border-bottom
:
2px
solid
;
border-color
:
#FF9900
;
padding-bottom
:
25px
;
}
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/wallet/menu/menu.component.html
View file @
7cbc0132
<nav
class=
"navbar navbar-toggleable-sm navbar-fixed-top
navbar-light bg-faded
"
>
<nav
class=
"navbar navbar-toggleable-sm navbar-fixed-top"
>
<div
class=
"container"
>
<div
class=
"container"
>
<ul
class=
"navbar-nav mr-auto"
routerLinkActive=
"active"
>
<ul
class=
"navbar-nav mr-auto"
routerLinkActive=
"active"
>
<li
class=
"nav-item"
><a
class=
"nav-link"
routerLink=
"dashboard"
>
Dashboard
</a></li>
<li
class=
"nav-item"
><a
class=
"nav-link"
routerLink=
"dashboard"
[
routerLinkActive
]="['
is-active
']"
>
Dashboard
</a></li>
<li
class=
"nav-item"
><a
class=
"nav-link"
routerLink=
"history"
>
History
</a></li>
<li
class=
"nav-item"
><a
class=
"nav-link"
routerLink=
"history"
[
routerLinkActive
]="['
is-active
']"
>
History
</a></li>
<li
class=
"nav-item"
><a
class=
"nav-link"
(
click
)="
logOut
()"
>
Logout
</a></li>
<li
class=
"nav-item"
><a
class=
"nav-link"
(
click
)="
logOut
()"
>
Logout
</a></li>
</ul>
</ul>
<div
class=
"navbar-brand"
>
Breeze
</div>
<div
class=
"navbar-brand"
>
Breeze
</div>
...
...
This diff is collapsed.
Click to expand it.
Breeze.UI/src/styles.css
View file @
7cbc0132
...
@@ -13,3 +13,24 @@ td {
...
@@ -13,3 +13,24 @@ td {
width
:
100%
;
width
:
100%
;
height
:
100%
;
height
:
100%
;
}
}
.nopadding
{
padding
:
0
!important
;
margin
:
0
!important
;
}
.vcenter
{
display
:
inline-block
;
vertical-align
:
middle
;
float
:
none
;
}
.row
{
padding
:
0
;
margin
:
0
;
}
.col
{
padding
:
0
;
margin
:
0
;
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment