Skip to content

Commit

Permalink
deploy: 46c7710
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferStrube committed Aug 4, 2024
0 parents commit 4e37bc7
Show file tree
Hide file tree
Showing 190 changed files with 1,474 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
36 changes: 36 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blazor DOM</title>
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
// 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

// If you're creating a Project Pages site and NOT using a custom domain,
// then set pathSegmentsToKeep 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/?/one/two&a=b~and~c=d#qwe
// Otherwise, leave pathSegmentsToKeep as 0.
var pathSegmentsToKeep = 1;

var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
l.pathname.split('/').slice(0, 1 + pathSegmentsToKeep).join('/') + '/?/' +
l.pathname.slice(1).split('/').slice(pathSegmentsToKeep).join('/').replace(/&/g, '~and~') +
(l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
l.hash
);

</script>
</head>
<body>
</body>
</html>
151 changes: 151 additions & 0 deletions KristofferStrube.Blazor.DOM.WasmExample.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-aagwv0xlj7] {
position: relative;
display: flex;
flex-direction: column;
}

main[b-aagwv0xlj7] {
flex: 1;
}

.sidebar[b-aagwv0xlj7] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-aagwv0xlj7] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}

.top-row[b-aagwv0xlj7] a, .top-row[b-aagwv0xlj7] .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}

.top-row[b-aagwv0xlj7] a:hover, .top-row[b-aagwv0xlj7] .btn-link:hover {
text-decoration: underline;
}

.top-row[b-aagwv0xlj7] a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
.top-row:not(.auth)[b-aagwv0xlj7] {
display: none;
}

.top-row.auth[b-aagwv0xlj7] {
justify-content: space-between;
}

.top-row[b-aagwv0xlj7] a, .top-row[b-aagwv0xlj7] .btn-link {
margin-left: 0;
}
}

@media (min-width: 641px) {
.page[b-aagwv0xlj7] {
flex-direction: row;
}

.sidebar[b-aagwv0xlj7] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}

.top-row[b-aagwv0xlj7] {
position: sticky;
top: 0;
z-index: 1;
}

.top-row.auth[b-aagwv0xlj7] a:first-child {
flex: 1;
text-align: right;
width: 0;
}

.top-row[b-aagwv0xlj7], article[b-aagwv0xlj7] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-k2cd95vaqx] {
background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-k2cd95vaqx] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-k2cd95vaqx] {
font-size: 1.1rem;
}

.oi[b-k2cd95vaqx] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}

.nav-item[b-k2cd95vaqx] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-k2cd95vaqx] {
padding-top: 1rem;
}

.nav-item:last-of-type[b-k2cd95vaqx] {
padding-bottom: 1rem;
}

.nav-item[b-k2cd95vaqx] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}

.nav-item[b-k2cd95vaqx] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}

.nav-item[b-k2cd95vaqx] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}

@media (min-width: 641px) {
.navbar-toggler[b-k2cd95vaqx] {
display: none;
}

.collapse[b-k2cd95vaqx] {
/* Never collapse the sidebar for wide screens */
display: block;
}

.nav-scrollable[b-k2cd95vaqx] {
/* Allow sidebar to scroll for tall menus */
height: calc(100vh - 3.5rem);
overflow-y: auto;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
export function getAttribute(object, attribute) { return object[attribute]; }
export function setAttribute(object, attribute, value) { object[attribute] = value; }

export function getJSReference(element) { return element.valueOf(); }

export function addEventListener(target, type, eventListener = null, options = null)
{
target.addEventListener(type, eventListener, options)
}

export function removeEventListener(target, type, eventListener = null, options)
{
target.removeEventListener(type, eventListener, options)
}

export function constructEventListener() {
return { };
}

export function registerEventHandlerAsync(objRef, jSInstance) {
jSInstance.handleEvent = (e) => objRef.invokeMethodAsync("HandleEventAsync", DotNet.createJSObjectReference(e))
}

export function registerInProcessEventHandlerAsync(objRef, jSInstance) {
jSInstance.handleEvent = (e) => objRef.invokeMethodAsync("HandleEventInProcessAsync", DotNet.createJSObjectReference(e))
}

export function constructEvent(type, eventInitDict = null) {
return new Event(type, eventInitDict);
}

export function constructCustomEvent(type, eventInitDict = null) {
return new CustomEvent(type, eventInitDict);
}

export function constructEventTarget() { return new EventTarget(); }

export function constructAbortController() { return new AbortController(); }
Loading

0 comments on commit 4e37bc7

Please sign in to comment.