|
|
|
@ -2,6 +2,8 @@
|
|
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
|
|
|
background: white;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1:focus {
|
|
|
|
@ -9,7 +11,8 @@ h1:focus {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a, .btn-link {
|
|
|
|
|
color: #0071c1;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
@ -62,3 +65,25 @@ a, .btn-link {
|
|
|
|
|
.blazor-error-boundary::after {
|
|
|
|
|
content: "An error has occurred."
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 25px;
|
|
|
|
|
background-color: lightgrey;
|
|
|
|
|
padding: 1vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar_app {
|
|
|
|
|
background: linear-gradient(45deg, #4a148c, #7b1fa2);
|
|
|
|
|
height: 100vh;
|
|
|
|
|
width: 15vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.top-row-app {
|
|
|
|
|
height: 3.5rem;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|