-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 5c24f61 🚀
- Loading branch information
1 parent
7cb5d19
commit 23dca64
Showing
160 changed files
with
1,252 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | ||
<system.webServer> | ||
<staticContent> | ||
<remove fileExtension=".blat" /> | ||
<remove fileExtension=".dat" /> | ||
<remove fileExtension=".dll" /> | ||
<remove fileExtension=".webcil" /> | ||
<remove fileExtension=".json" /> | ||
<remove fileExtension=".wasm" /> | ||
<remove fileExtension=".woff" /> | ||
<remove fileExtension=".woff2" /> | ||
<mimeMap fileExtension=".blat" mimeType="application/octet-stream" /> | ||
<mimeMap fileExtension=".dll" mimeType="application/octet-stream" /> | ||
<mimeMap fileExtension=".webcil" mimeType="application/octet-stream" /> | ||
<mimeMap fileExtension=".dat" mimeType="application/octet-stream" /> | ||
<mimeMap fileExtension=".json" mimeType="application/json" /> | ||
<mimeMap fileExtension=".wasm" mimeType="application/wasm" /> | ||
<mimeMap fileExtension=".woff" mimeType="application/font-woff" /> | ||
<mimeMap fileExtension=".woff2" mimeType="application/font-woff" /> | ||
</staticContent> | ||
<httpCompression> | ||
<dynamicTypes> | ||
<add mimeType="application/octet-stream" enabled="true" /> | ||
<add mimeType="application/wasm" enabled="true" /> | ||
</dynamicTypes> | ||
</httpCompression> | ||
<rewrite> | ||
<rules> | ||
<rule name="Serve subdir"> | ||
<match url=".*" /> | ||
<action type="Rewrite" url="wwwroot\{R:0}" /> | ||
</rule> | ||
<rule name="SPA fallback routing" stopProcessing="true"> | ||
<match url=".*" /> | ||
<conditions logicalGrouping="MatchAll"> | ||
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> | ||
</conditions> | ||
<action type="Rewrite" url="wwwroot\" /> | ||
</rule> | ||
</rules> | ||
</rewrite> | ||
</system.webServer> | ||
</configuration> |
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,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<title>BlazorWebAssemblyApp</title> | ||
<base href="/BlazorWebAssemblyApp" /> | ||
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" /> | ||
<link href="css/app.css" rel="stylesheet" /> | ||
<link rel="icon" type="image/png" href="favicon.png" /> | ||
<link href="BlazorWebAssemblyApp.styles.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<div id="app"> | ||
<svg class="loading-progress"> | ||
<circle r="40%" cx="50%" cy="50%" /> | ||
<circle r="40%" cx="50%" cy="50%" /> | ||
</svg> | ||
<div class="loading-progress-text"></div> | ||
</div> | ||
|
||
<div id="blazor-error-ui"> | ||
An unhandled error has occurred. | ||
<a href="" class="reload">Reload</a> | ||
<a class="dismiss">🗙</a> | ||
</div> | ||
<script src="_framework/blazor.webassembly.js"></script> | ||
</body> | ||
|
||
</html> |
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,151 @@ | ||
/* /Shared/MainLayout.razor.rz.scp.css */ | ||
.page[b-mlbnw1yqhz] { | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
main[b-mlbnw1yqhz] { | ||
flex: 1; | ||
} | ||
|
||
.sidebar[b-mlbnw1yqhz] { | ||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); | ||
} | ||
|
||
.top-row[b-mlbnw1yqhz] { | ||
background-color: #f7f7f7; | ||
border-bottom: 1px solid #d6d5d5; | ||
justify-content: flex-end; | ||
height: 3.5rem; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.top-row[b-mlbnw1yqhz] a, .top-row[b-mlbnw1yqhz] .btn-link { | ||
white-space: nowrap; | ||
margin-left: 1.5rem; | ||
text-decoration: none; | ||
} | ||
|
||
.top-row[b-mlbnw1yqhz] a:hover, .top-row[b-mlbnw1yqhz] .btn-link:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.top-row[b-mlbnw1yqhz] a:first-child { | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
|
||
@media (max-width: 640.98px) { | ||
.top-row:not(.auth)[b-mlbnw1yqhz] { | ||
display: none; | ||
} | ||
|
||
.top-row.auth[b-mlbnw1yqhz] { | ||
justify-content: space-between; | ||
} | ||
|
||
.top-row[b-mlbnw1yqhz] a, .top-row[b-mlbnw1yqhz] .btn-link { | ||
margin-left: 0; | ||
} | ||
} | ||
|
||
@media (min-width: 641px) { | ||
.page[b-mlbnw1yqhz] { | ||
flex-direction: row; | ||
} | ||
|
||
.sidebar[b-mlbnw1yqhz] { | ||
width: 250px; | ||
height: 100vh; | ||
position: sticky; | ||
top: 0; | ||
} | ||
|
||
.top-row[b-mlbnw1yqhz] { | ||
position: sticky; | ||
top: 0; | ||
z-index: 1; | ||
} | ||
|
||
.top-row.auth[b-mlbnw1yqhz] a:first-child { | ||
flex: 1; | ||
text-align: right; | ||
width: 0; | ||
} | ||
|
||
.top-row[b-mlbnw1yqhz], article[b-mlbnw1yqhz] { | ||
padding-left: 2rem !important; | ||
padding-right: 1.5rem !important; | ||
} | ||
} | ||
/* /Shared/NavMenu.razor.rz.scp.css */ | ||
.navbar-toggler[b-1t17sgyw03] { | ||
background-color: rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
.top-row[b-1t17sgyw03] { | ||
height: 3.5rem; | ||
background-color: rgba(0,0,0,0.4); | ||
} | ||
|
||
.navbar-brand[b-1t17sgyw03] { | ||
font-size: 1.1rem; | ||
} | ||
|
||
.oi[b-1t17sgyw03] { | ||
width: 2rem; | ||
font-size: 1.1rem; | ||
vertical-align: text-top; | ||
top: -2px; | ||
} | ||
|
||
.nav-item[b-1t17sgyw03] { | ||
font-size: 0.9rem; | ||
padding-bottom: 0.5rem; | ||
} | ||
|
||
.nav-item:first-of-type[b-1t17sgyw03] { | ||
padding-top: 1rem; | ||
} | ||
|
||
.nav-item:last-of-type[b-1t17sgyw03] { | ||
padding-bottom: 1rem; | ||
} | ||
|
||
.nav-item[b-1t17sgyw03] a { | ||
color: #d7d7d7; | ||
border-radius: 4px; | ||
height: 3rem; | ||
display: flex; | ||
align-items: center; | ||
line-height: 3rem; | ||
} | ||
|
||
.nav-item[b-1t17sgyw03] a.active { | ||
background-color: rgba(255,255,255,0.25); | ||
color: white; | ||
} | ||
|
||
.nav-item[b-1t17sgyw03] a:hover { | ||
background-color: rgba(255,255,255,0.1); | ||
color: white; | ||
} | ||
|
||
@media (min-width: 641px) { | ||
.navbar-toggler[b-1t17sgyw03] { | ||
display: none; | ||
} | ||
|
||
.collapse[b-1t17sgyw03] { | ||
/* Never collapse the sidebar for wide screens */ | ||
display: block; | ||
} | ||
|
||
.nav-scrollable[b-1t17sgyw03] { | ||
/* Allow sidebar to scroll for tall menus */ | ||
height: calc(100vh - 3.5rem); | ||
overflow-y: auto; | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+24.6 KB
wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.br
Binary file not shown.
Binary file added
BIN
+28.1 KB
wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.27 KB
wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.wasm
Binary file not shown.
Binary file added
BIN
+1.82 KB
wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.br
Binary file not shown.
Binary file added
BIN
+2.08 KB
wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.3 KB
wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm
Binary file not shown.
Binary file added
BIN
+5.28 KB
wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.br
Binary file not shown.
Binary file added
BIN
+5.85 KB
wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,66 @@ | ||
{ | ||
"mainAssemblyName": "BlazorWebAssemblyApp", | ||
"resources": { | ||
"hash": "sha256-tMNTUjHIjc6lwMiR3/o7OwL7eveklpyrR3rfyePfOJA=", | ||
"jsModuleNative": { | ||
"dotnet.native.8.0.2.jgt5nhn140.js": "sha256-gPMK16QWoJSTxorlZJqcVtbBRTniIQWlLsJN2O4cJHg=" | ||
}, | ||
"jsModuleRuntime": { | ||
"dotnet.runtime.8.0.2.8djt6nqnbz.js": "sha256-54KSaoOArNfygQbV+r4B5y3ys53v2tnvFIyZcZiUmi0=" | ||
}, | ||
"wasmNative": { | ||
"dotnet.native.wasm": "sha256-C2P+OTYZAJlmqo6rc4heqwvIVVsXIF8MAxC6WRe96Eg=" | ||
}, | ||
"icu": { | ||
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=", | ||
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=", | ||
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=" | ||
}, | ||
"assembly": { | ||
"BlazorWebAssemblyApp.wasm": "sha256-K0e7E+LXAMH+3n/rJubpH/9kIap9/J62ytHFmy/2POQ=", | ||
"Clock.wasm": "sha256-vbZHQk1BXSlbwthjXgdHIBcqtmcGN7yzjYFBLMejn/I=", | ||
"Microsoft.AspNetCore.Components.wasm": "sha256-x3srcI7E3TmEqHiT58l+yQ/0GggI5n1E54qjrH2KJjk=", | ||
"Microsoft.AspNetCore.Components.Web.wasm": "sha256-ivj7kxN8rrhTm1UV0H7dhsOewu6rhATFU2ZAG/YKLvA=", | ||
"Microsoft.AspNetCore.Components.WebAssembly.wasm": "sha256-mgrYiMJHZDCl/Afya8Fq7TNBB/C0j3eoT7hJUWLYgXQ=", | ||
"Microsoft.Extensions.Configuration.Abstractions.wasm": "sha256-87sn2TYqgdZ95sXmavjKEzoEfMgHnYQ9LOvnMX+aZcI=", | ||
"Microsoft.Extensions.Configuration.Json.wasm": "sha256-Sxmy2ZS134URxbHEvdbS6NcQ3zXS7UWx/5ZPpwiW7FA=", | ||
"Microsoft.Extensions.Configuration.wasm": "sha256-jYqHUZ07UYWc8POk7xhas6xQYH7t1qoTcylqoDqncJk=", | ||
"Microsoft.Extensions.DependencyInjection.Abstractions.wasm": "sha256-KL6rxbtPeu5s5YtqH92OXtFWvmwD8chw2VRIAqxMZNM=", | ||
"Microsoft.Extensions.DependencyInjection.wasm": "sha256-6To551rnUmd7Ym2LH+UC3rOcrKnoHTqW/DMpkwtub9U=", | ||
"Microsoft.Extensions.Logging.Abstractions.wasm": "sha256-i3T15EffTUpjnUzDEhgpZ50Vk/u92VM3hOpxlD6vyHA=", | ||
"Microsoft.Extensions.Logging.wasm": "sha256-8BH+kQfjYuZWxprOICXJ4+tU0OdJOYDKN7G0S3zYYHI=", | ||
"Microsoft.Extensions.Options.wasm": "sha256-6DN1malfyp0G0uOYwQY0nIN60XdXpVXUXXw0X2c8V8E=", | ||
"Microsoft.Extensions.Primitives.wasm": "sha256-Ms2HR5Gpug/0uRAzdk4SUNT76Ml3CjFv9Jo+dUIMGac=", | ||
"Microsoft.JSInterop.wasm": "sha256-lXwhdv0Is9FMH/j0+WH3zoNWAGLbVaONtGucJ/4URQ0=", | ||
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-CQVLCKiSxLN5ghyJZG3mhnMGRROdqrbNUjtAXB0nWb8=", | ||
"netstandard.wasm": "sha256-opJDVoW5Mwc3IlKpaZ+pOJ3JC3GVVIKMXk9PYL/0i5I=", | ||
"System.Collections.Concurrent.wasm": "sha256-TANB8waL9eEcaxUtuRg56mGqfpydvIHidXqqM8DWdtI=", | ||
"System.Collections.Immutable.wasm": "sha256-OSBwSAK5JI2oD3Dsq+dA+BA3hBnN2g+x2cd7eG8/uWY=", | ||
"System.Collections.wasm": "sha256-GQv4TCpZSB8bvfrOy151DVjOiSQOwTHods/AOoFrlNw=", | ||
"System.ComponentModel.wasm": "sha256-qwurUoDSjnjNxAivtUxZqGvkOgARzX9ETuhBPrMx5Xo=", | ||
"System.Console.wasm": "sha256-hcaSe3dddvUYzyPNpqoGVuiON/PLZocvLhbJ0wtpre8=", | ||
"System.Linq.Expressions.wasm": "sha256-2YlO/3K4bkam5HaH1O7KDs1TBAf7Dh4AHfR/kRQNnNk=", | ||
"System.Linq.wasm": "sha256-Dz5et6+TDBWKbnWpdOtgLJlzGRZrL48rMOXTgGL6fYQ=", | ||
"System.Memory.wasm": "sha256-xrD/wQYOFw5b4VKQ/EM5GmN5zJRb+05dTaB4wQDIx9k=", | ||
"System.Net.Http.wasm": "sha256-6m19mkuheow7Jv1+bmjfwJffNfxGHJrDu+eWAmXGKas=", | ||
"System.Net.Primitives.wasm": "sha256-sm6hDRoze7+24GQmGGL6eyXuz9nBcj3qAI8bOqlSVnc=", | ||
"System.ObjectModel.wasm": "sha256-7fPUqWO6h/YP/xfbvLQ4DQkp9c8i4EYAI6Mi5yYjR2U=", | ||
"System.Private.CoreLib.wasm": "sha256-9CzYaONi9mDKJ1xeMjgxaSlMOj8PGq/KZccmgRxroUA=", | ||
"System.Private.Uri.wasm": "sha256-OV+QIxwhJgwMSWxb+jmaL2jKmv3BRPf9MABpFXErZak=", | ||
"System.Runtime.InteropServices.JavaScript.wasm": "sha256-T2K6ERDBbMcqpAsu8oflYpcGJKbPM0Cq0I1c9Z+WaPs=", | ||
"System.Runtime.wasm": "sha256-iUag98sMlzopSw5Do/s7eGQM7pDMzpIYR+c8pIejpPM=", | ||
"System.Text.Encodings.Web.wasm": "sha256-NnePSWCgIId8nOPCgziTKhDyG6uCBs+3W6fazrWLoUA=", | ||
"System.Text.Json.wasm": "sha256-vSrOYpmmPgi77KE2qnFRE6co1o8GvQqTipehiTXYWWg=", | ||
"System.Text.RegularExpressions.wasm": "sha256-W20q/uEUAv0A+F6irUkY0pCZJo76wNuWpz3XgcLFB2M=", | ||
"System.Threading.wasm": "sha256-ExcURYyPn8mZ+IHhKw5Q02l+we0kCYT9z6SiVl85asg=", | ||
"WeatherForecast.wasm": "sha256-yPnPI+9OfDfP4HjIgP1Z6Cg9OFGbzK+7yQi/vUnLZWI=" | ||
} | ||
}, | ||
"cacheBootResources": true, | ||
"debugLevel": 0, | ||
"linkerEnabled": true, | ||
"globalizationMode": "sharded", | ||
"extensions": { | ||
"blazor": {} | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,101 @@ | ||
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); | ||
|
||
html, body { | ||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | ||
} | ||
|
||
h1:focus { | ||
outline: none; | ||
} | ||
|
||
a, .btn-link { | ||
color: #0071c1; | ||
} | ||
|
||
.btn-primary { | ||
color: #fff; | ||
background-color: #1b6ec2; | ||
border-color: #1861ac; | ||
} | ||
|
||
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { | ||
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; | ||
} | ||
|
||
.content { | ||
padding-top: 1.1rem; | ||
} | ||
|
||
.valid.modified:not([type=checkbox]) { | ||
outline: 1px solid #26b050; | ||
} | ||
|
||
.invalid { | ||
outline: 1px solid red; | ||
} | ||
|
||
.validation-message { | ||
color: red; | ||
} | ||
|
||
#blazor-error-ui { | ||
background: lightyellow; | ||
bottom: 0; | ||
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); | ||
display: none; | ||
left: 0; | ||
padding: 0.6rem 1.25rem 0.7rem 1.25rem; | ||
position: fixed; | ||
width: 100%; | ||
z-index: 1000; | ||
} | ||
|
||
#blazor-error-ui .dismiss { | ||
cursor: pointer; | ||
position: absolute; | ||
right: 0.75rem; | ||
top: 0.5rem; | ||
} | ||
|
||
.blazor-error-boundary { | ||
background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; | ||
padding: 1rem 1rem 1rem 3.7rem; | ||
color: white; | ||
} | ||
|
||
.blazor-error-boundary::after { | ||
content: "An error has occurred." | ||
} | ||
|
||
.loading-progress { | ||
position: relative; | ||
display: block; | ||
width: 8rem; | ||
height: 8rem; | ||
margin: 20vh auto 1rem auto; | ||
} | ||
|
||
.loading-progress circle { | ||
fill: none; | ||
stroke: #e0e0e0; | ||
stroke-width: 0.6rem; | ||
transform-origin: 50% 50%; | ||
transform: rotate(-90deg); | ||
} | ||
|
||
.loading-progress circle:last-child { | ||
stroke: #1b6ec2; | ||
stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%; | ||
transition: stroke-dasharray 0.05s ease-in-out; | ||
} | ||
|
||
.loading-progress-text { | ||
position: absolute; | ||
text-align: center; | ||
font-weight: bold; | ||
inset: calc(20vh + 3.25rem) 0 auto 0.2rem; | ||
} | ||
|
||
.loading-progress-text:after { | ||
content: var(--blazor-load-percentage-text, "Loading"); | ||
} |
Oops, something went wrong.