-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update UI for dark theme :D * Remove old code & Clean up Payments/Network * Update Screenshots in README * Round CPU Percent Usage * Update Load & LoadFailed Views to match new theme * Fix spacing on retry button Co-authored-by: Vincente Ciancio <[email protected]>
- Loading branch information
Showing
8 changed files
with
269 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.v-divider { | ||
margin-left:5px; | ||
margin-right:5px; | ||
width:1px; | ||
height:100%; | ||
border-left:1px solid white; | ||
} | ||
|
||
.vertical-center { | ||
margin: 0; | ||
position: absolute; | ||
top: 50%; | ||
-ms-transform: translateY(-50%); | ||
transform: translateY(-50%); | ||
} | ||
|
||
|
||
.list-group-item { | ||
background: var(--color-card); | ||
border-color: var(--color-card-border); | ||
} | ||
|
||
.card { | ||
padding: 10px; | ||
border-radius: 25px; | ||
background: var(--color-card); | ||
border-color: var(--color-card-border); | ||
} | ||
|
||
.headerList { | ||
align-items: flex-start; | ||
} | ||
|
||
.headerList h5 { | ||
font-weight: 200; | ||
} | ||
|
||
.highlight-number h3 { | ||
font-weight:400; | ||
} | ||
|
||
.highlight-number { | ||
font-weight: bold; | ||
font-size: x-large; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,28 @@ | ||
.card { | ||
border-radius: 25px; | ||
background: #12188c; | ||
padding: 20px; | ||
width: 200px; | ||
height: 150px; | ||
} | ||
margin: auto; | ||
min-width: 50%; | ||
} | ||
|
||
.percent-high { | ||
color: lightcoral; | ||
} | ||
|
||
.percent-mid { | ||
color: lightsalmon; | ||
} | ||
|
||
.card h2 { | ||
color: white; | ||
.percent-low { | ||
color: lightgreen; | ||
} | ||
|
||
|
||
.running { | ||
color: lightgreen; | ||
} | ||
|
||
.standby { | ||
color: lightskyblue; | ||
} | ||
|
||
.offline { | ||
color: lightcoral | ||
} |
Oops, something went wrong.