-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5a5eb1b
Showing
207 changed files
with
1,553 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,39 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Single Page Apps for GitHub Pages</title> | ||
<script type="text/javascript"> | ||
// Single Page Apps for GitHub Pages | ||
// https://github.com/rafrex/spa-github-pages | ||
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License | ||
// ---------------------------------------------------------------------- | ||
// This script takes the current url and converts the path and query | ||
// string into just a query string, and then redirects the browser | ||
// to the new url with only a query string and hash fragment, | ||
// e.g. http://www.foo.tld/one/two?a=b&c=d#qwe, becomes | ||
// http://www.foo.tld/dotnet-console-games/?p=/one/two&q=a=b~and~c=d#qwe | ||
// Note: this 404.html file must be at least 512 bytes for it to work | ||
// with Internet Explorer (it is currently > 512 bytes) | ||
|
||
// If you're creating a Project Pages site and NOT using a custom domain, | ||
// then set segmentCount to 1 (enterprise users may need to set it to > 1). | ||
// This way the code will only replace the route part of the path, and not | ||
// the real directory in which the app resides, for example: | ||
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes | ||
// https://username.github.io/repo-name/dotnet-console-games/?p=/one/two&q=a=b~and~c=d#qwe | ||
// Otherwise, leave segmentCount as 0. | ||
var segmentCount = 0; | ||
var l = window.location; | ||
l.replace( | ||
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') + | ||
l.pathname.split('/').slice(0, 1 + segmentCount).join('/') + '/dotnet-console-games/?p=/' + | ||
l.pathname.slice(1).split('/').slice(segmentCount).join('/').replace(/&/g, '~and~') + | ||
(l.search ? '&q=' + l.search.slice(1).replace(/&/g, '~and~') : '') + | ||
l.hash | ||
); | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
Validating CODEOWNERS rules …
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 @@ | ||
* @ZacharyPatten |
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,145 @@ | ||
/* /Shared/MainLayout.razor.rz.scp.css */ | ||
.page[b-sy2l7isrkd] { | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
main[b-sy2l7isrkd] { | ||
flex: 1; | ||
} | ||
|
||
.sidebar[b-sy2l7isrkd] { | ||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); | ||
} | ||
|
||
.top-row[b-sy2l7isrkd] { | ||
background-color: #f7f7f7; | ||
border-bottom: 1px solid #d6d5d5; | ||
justify-content: flex-end; | ||
height: 3.5rem; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.top-row[b-sy2l7isrkd] a, .top-row[b-sy2l7isrkd] .btn-link { | ||
white-space: nowrap; | ||
margin-left: 1.5rem; | ||
text-decoration: none; | ||
} | ||
|
||
.top-row[b-sy2l7isrkd] a:hover, .top-row[b-sy2l7isrkd] .btn-link:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.top-row[b-sy2l7isrkd] a:first-child { | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
|
||
@media (max-width: 640.98px) { | ||
.top-row:not(.auth)[b-sy2l7isrkd] { | ||
display: none; | ||
} | ||
|
||
.top-row.auth[b-sy2l7isrkd] { | ||
justify-content: space-between; | ||
} | ||
|
||
.top-row[b-sy2l7isrkd] a, .top-row[b-sy2l7isrkd] .btn-link { | ||
margin-left: 0; | ||
} | ||
} | ||
|
||
@media (min-width: 641px) { | ||
.page[b-sy2l7isrkd] { | ||
flex-direction: row; | ||
} | ||
|
||
.sidebar[b-sy2l7isrkd] { | ||
width: 250px; | ||
height: 100vh; | ||
position: sticky; | ||
top: 0; | ||
} | ||
|
||
.top-row[b-sy2l7isrkd] { | ||
position: sticky; | ||
top: 0; | ||
z-index: 1; | ||
} | ||
|
||
.top-row.auth[b-sy2l7isrkd] a:first-child { | ||
flex: 1; | ||
text-align: right; | ||
width: 0; | ||
} | ||
|
||
.top-row[b-sy2l7isrkd], article[b-sy2l7isrkd] { | ||
padding-left: 2rem !important; | ||
padding-right: 1.5rem !important; | ||
} | ||
} | ||
/* /Shared/NavMenu.razor.rz.scp.css */ | ||
.navbar-toggler[b-y13vmniad5] { | ||
background-color: rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
.top-row[b-y13vmniad5] { | ||
height: 3.5rem; | ||
background-color: rgba(0,0,0,0.4); | ||
} | ||
|
||
.navbar-brand[b-y13vmniad5] { | ||
font-size: 1.1rem; | ||
} | ||
|
||
.oi[b-y13vmniad5] { | ||
width: 2rem; | ||
font-size: 1.1rem; | ||
vertical-align: text-top; | ||
top: -2px; | ||
} | ||
|
||
.nav-item[b-y13vmniad5] { | ||
font-size: 0.9rem; | ||
padding-bottom: 0.5rem; | ||
} | ||
|
||
.nav-item:first-of-type[b-y13vmniad5] { | ||
padding-top: 1rem; | ||
} | ||
|
||
.nav-item:last-of-type[b-y13vmniad5] { | ||
padding-bottom: 1rem; | ||
} | ||
|
||
.nav-item[b-y13vmniad5] a { | ||
color: #d7d7d7; | ||
border-radius: 4px; | ||
height: 3rem; | ||
display: flex; | ||
align-items: center; | ||
line-height: 3rem; | ||
} | ||
|
||
.nav-item[b-y13vmniad5] a.active { | ||
background-color: rgba(255,255,255,0.25); | ||
color: white; | ||
} | ||
|
||
.nav-item[b-y13vmniad5] a:hover { | ||
background-color: rgba(255,255,255,0.1); | ||
color: white; | ||
} | ||
|
||
@media (min-width: 641px) { | ||
.navbar-toggler[b-y13vmniad5] { | ||
display: none; | ||
} | ||
|
||
.collapse[b-y13vmniad5] { | ||
/* Never collapse the sidebar for wide screens */ | ||
display: block; | ||
} | ||
} |
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 added
BIN
+4.47 KB
_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br
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.
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,79 @@ | ||
{ | ||
"cacheBootResources": true, | ||
"config": [ ], | ||
"debugBuild": false, | ||
"entryAssembly": "Website", | ||
"icuDataMode": 0, | ||
"linkerEnabled": true, | ||
"resources": { | ||
"assembly": { | ||
"Microsoft.AspNetCore.Components.dll": "sha256-ryX\/Jh\/70yt+l+YISU+V9adaLgF092TEC02zhqv0XDc=", | ||
"Microsoft.AspNetCore.Components.Web.dll": "sha256-+rpIvlOzSJkRV3z8oQ6gcnxKSsV6xeRbb6crNLEc2RI=", | ||
"Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-IiCeDD2\/cESvpd281cmPUvaLlj5RlX\/Gy2c0FzTfcec=", | ||
"Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-X\/f4fDl2cuIRXeWHhK\/f2UqQbFioD+RU4a4CEh0zrrQ=", | ||
"Microsoft.Extensions.Configuration.dll": "sha256-DBOKSPriP2JDxVbbWrLXyD3K4\/x3RBifNBWk\/q1I39M=", | ||
"Microsoft.Extensions.Configuration.Json.dll": "sha256-Q5AqJneA2TZnzC0IYzBx6j\/tHRhWAeMbpH3BsV7KgWg=", | ||
"Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-RQakQLe0UP6Ngaoye5WMQm3Z+RhaSWtoOPBfBex7woQ=", | ||
"Microsoft.Extensions.DependencyInjection.dll": "sha256-qi0kE7rp0kdsNqdL6DyPZEeimjUGvcLT4iWQX0YnRus=", | ||
"Microsoft.Extensions.Logging.Abstractions.dll": "sha256-M\/xZhgXtA\/uoto5VPlwoWe3\/fr\/IrnNCFSzrBUqvGHc=", | ||
"Microsoft.Extensions.Logging.dll": "sha256-RJE660TEC1wm3MyL1EXQfTQB1qK+JWy1efVUxI8nNUo=", | ||
"Microsoft.Extensions.Options.dll": "sha256-WPBQk7rt2p4aMEo2pTp1sBpsiWdE8MmWuIYq+zl1ceo=", | ||
"Microsoft.Extensions.Primitives.dll": "sha256-eXvGx2jcjpTPEJoAHBsW\/VuMPbNyyU+AsuhPmkzSSRY=", | ||
"Microsoft.JSInterop.dll": "sha256-d1AApAzy1QFD8J2+smh\/oYtL\/FrUcrezQ\/VrJOjmeYM=", | ||
"Microsoft.JSInterop.WebAssembly.dll": "sha256-3+dHa65PgCYOsUMlsJSDYPxt294+nWZxeMbopoWb+fA=", | ||
"System.Collections.Concurrent.dll": "sha256-UX0ZI9vSHVLRO62\/jueMfdrpeQ+T847UdVKvXK9wCkw=", | ||
"System.Collections.dll": "sha256-ev3zjd7jUvVIbjEYDRSKBUzLLcyQbliw\/3izNAeKt10=", | ||
"System.Collections.NonGeneric.dll": "sha256-PorvxaEoQUge\/+3Y8QcnL6DQq0T43J9IvjInIwBwzpw=", | ||
"System.Collections.Specialized.dll": "sha256-eZgOEoQVCb30i8Ifn2A4K9Kvfz5Fr0AQnj4HJpcuBxI=", | ||
"System.ComponentModel.dll": "sha256-rlxn8B8ZL9MmrA8Z6No3be1RqFhVusoQqKJeEae17JE=", | ||
"System.ComponentModel.Primitives.dll": "sha256-H0LvdrVhdSvlAAHMJYmdE9LbuP0PMSo+nxPSVRCgCiQ=", | ||
"System.ComponentModel.TypeConverter.dll": "sha256-UpzW444Bl88316fQsjHdt0JHEfpa6a\/c6lUHqLK6JdU=", | ||
"System.Console.dll": "sha256-iNC0ijzi+g5M6d2SRA1O1fhmONFHzVCqD4J52fTEaxA=", | ||
"System.Diagnostics.TraceSource.dll": "sha256-ea2a5G1mTif6Yrb2bce4m9o1CJlSv8ZH2gztGgSuMdg=", | ||
"System.dll": "sha256-Fejv\/gPaOjbjG5px9VVT\/r\/8pjFBoNVu806apMepkmE=", | ||
"System.IO.FileSystem.dll": "sha256-iNtKvgEhvbXvboBHvDxVJTXZLUyUjUn+xG5xB7BFgxs=", | ||
"System.Linq.dll": "sha256-5MhRrPQXhX6oXF15Ida8u7HdZZJLGCzXXOTkpsalQXY=", | ||
"System.Linq.Expressions.dll": "sha256-8vkXfbGY7tVuA30B4xDf7DKsx16vDx2Fb\/NF4MH8KdQ=", | ||
"System.Memory.dll": "sha256-XV+5LSz4qKOBdw8JL6qoLI1EAA7Wqh9YLwTt9Ddvjow=", | ||
"System.Net.Http.dll": "sha256-oVcqslvDUD5C3uFzbBXwnF2pmdhoemmVEHvrOD3tZ+w=", | ||
"System.Net.Primitives.dll": "sha256-z9ZcoHUkFVlhrEIw1Hhq5JetT4TLimsx\/FsqYPxpJFM=", | ||
"System.ObjectModel.dll": "sha256-YdBAQcOJ05COKmJFVrkLYVtifUI2GjteiKmbn30AOLI=", | ||
"System.Private.CoreLib.dll": "sha256-Ei2jMh8H0a5Vq7ukBFECP6UmG2q11RtlmI5REOW1oyQ=", | ||
"System.Private.Uri.dll": "sha256-R43XAm9fc\/eXK5wcSfsnRNNg+4CCWZb9aJPnoBJpRtk=", | ||
"System.Private.Xml.dll": "sha256-F0sHmAZAJu10YUUNRI0GsJ1zOfjnCIyl0qbPiPF+uQI=", | ||
"System.Runtime.dll": "sha256-pralMGwI9AG2cwX7\/GTxXgdTgNYlb+NusGZezaZodDk=", | ||
"System.Runtime.InteropServices.JavaScript.dll": "sha256-NIZdT\/hG9Khu\/5TWiigIneI72NiAFEYP+s01+m5RiJQ=", | ||
"System.Runtime.Numerics.dll": "sha256-NhM9mO39Rnpy9M1bZ4zSxrNLWmxGxIO7kI\/\/hmmPlPY=", | ||
"System.Security.Cryptography.dll": "sha256-uUGiICLI2W35kV6ISM1afCnXOoNUzooMEd80NfrzCT8=", | ||
"System.Text.Encodings.Web.dll": "sha256-62jaTSp4h\/t4ygPGRZWHo3B8+dCDb8\/ZGuOG69ImEBM=", | ||
"System.Text.Json.dll": "sha256-zj63B+d02TWOfEvbO15\/VulBi0bHhqS4+M+8IDvNA5k=", | ||
"System.Text.RegularExpressions.dll": "sha256-KGGaJ+0EosGRjqXkCqzGgy6crsc26qnitljouCzONvo=", | ||
"System.Threading.dll": "sha256-zq494j0Bc+pmag9K4aCMbapYEYF8zcu5hoAnm\/lxkZs=", | ||
"System.Web.HttpUtility.dll": "sha256-xIoIFGg7HATARHve2DdsVh7JR\/XEAWrqZQXDGx+dRzU=", | ||
"System.Xml.ReaderWriter.dll": "sha256-OVdPGL4yGS6cycJXTT6kXfLDlzd0iWp7AatZS0EPHGI=", | ||
"System.Xml.XmlSerializer.dll": "sha256-VT2n6cxW7IkHJgchp0GjfNYPt1ruGYJYVn7WHGN7mgw=", | ||
"Towel.dll": "sha256-gA9RIer4Ao3lKVux7VSG5lo\/YAF\/O2K\/WFXpV31GmmM=", | ||
"Website.dll": "sha256-rNqlNkfa43O30zHAEte9dXftV2svIBqcpNgTIkA846U=" | ||
}, | ||
"extensions": null, | ||
"lazyAssembly": null, | ||
"libraryInitializers": null, | ||
"pdb": null, | ||
"runtime": { | ||
"dotnet.7.0.12.mqf304npcx.js": "sha256-cPJgWy8SjMaYFeimGkYy23ls+rDZVmoC\/eMoHpqRc+4=", | ||
"dotnet.timezones.blat": "sha256-O421u5MzVtmNN7GY9RXR9Ib1uPK4hQfPpzOVofr7iNU=", | ||
"dotnet.wasm": "sha256-vwAkMgGGA\/XIQDk2s\/UjKb+fTk9xcKpa9qhvMBqj8hA=", | ||
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=", | ||
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=", | ||
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37\/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=", | ||
"icudt.dat": "sha256-tO5O5YzMTVSaKBboxAqezOQL9ewmupzV2JrB5Rkc8a4=" | ||
}, | ||
"runtimeAssets": { | ||
"dotnet.wasm": { | ||
"behavior": "dotnetwasm", | ||
"hash": "sha256-vwAkMgGGA\/XIQDk2s\/UjKb+fTk9xcKpa9qhvMBqj8hA=" | ||
} | ||
}, | ||
"satelliteResources": null | ||
} | ||
} |
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.
Oops, something went wrong.