Use proper background color.

This commit is contained in:
Jamie Holdstock 2021-05-26 21:30:11 +08:00 committed by Jamie Holdstock
parent 32c5c7a524
commit 7edbd02d4e
3 changed files with 7 additions and 3 deletions

View File

@ -2,12 +2,16 @@ html, body {
height: 100%; height: 100%;
} }
body { body {
background-color: #F9FAFA; background-color: #F3F5F6;
color: #3D5873; color: #3D5873;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.navbar {
background-color: #F9FAFA;
}
.navbar a { .navbar a {
text-decoration: none; text-decoration: none;
} }

View File

@ -67,7 +67,7 @@
{{ if .VspStats.Debug }} {{ if .VspStats.Debug }}
<div class="container"> <div class="container">
<div class="alert alert-warning" role="alert"> <div class="alert alert-warning my-2">
Web server is running in debug mode - don't do this in production! Web server is running in debug mode - don't do this in production!
</div> </div>
</div> </div>

View File

@ -4,7 +4,7 @@
<div class="container"> <div class="container">
{{ if .VspStats.VspClosed }} {{ if .VspStats.VspClosed }}
<div class="alert alert-danger" role="alert"> <div class="alert alert-danger">
<h4 class="alert-heading">This Voting Service Provider is closed</h4> <h4 class="alert-heading">This Voting Service Provider is closed</h4>
A closed VSP will still vote on tickets with already paid fees, but will not accept new any tickets. A closed VSP will still vote on tickets with already paid fees, but will not accept new any tickets.
Visit <a href="https://decred.org/vsp/" class="alert-link" target="_blank" rel="noopener noreferrer">decred.org</a> to find a new VSP. Visit <a href="https://decred.org/vsp/" class="alert-link" target="_blank" rel="noopener noreferrer">decred.org</a> to find a new VSP.