Skip to content

Commit

Permalink
deploy: a0c1b38
Browse files Browse the repository at this point in the history
  • Loading branch information
Seji64 committed Jul 16, 2024
0 parents commit 57c2afc
Show file tree
Hide file tree
Showing 657 changed files with 2,250 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* -text
Empty file added .nojekyll
Empty file.
38 changes: 38 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GPXRide</title>
<base href="/GPXRide/" />
<link rel="stylesheet" href="css/app.css" />
<link rel="icon" type="image/png" href="favicon.ico" />
<link href="manifest.webmanifest" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
<link rel="apple-touch-icon" sizes="192x192" href="icon-192.png" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.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" autostart="false"></script>
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
<script src="brotliloader.min.js" type="module"></script>
</body>

</html>
80 changes: 80 additions & 0 deletions GPXRide.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
@import '_content/PatrickJahr.Blazor.PwaUpdate/PatrickJahr.Blazor.PwaUpdate.bundle.scp.css';

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-4y4680lcue] {
position: relative;
display: flex;
flex-direction: column;
}

main[b-4y4680lcue] {
flex: 1;
}

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

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

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

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

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

@media (max-width: 640.98px) {
.top-row[b-4y4680lcue] {
justify-content: space-between;
}

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

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

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

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

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

.top-row[b-4y4680lcue], article[b-4y4680lcue] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
21 changes: 21 additions & 0 deletions _content/Append.Blazor.WebShare/scripts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export async function share(shareData) {
try {
await navigator.share(shareData)
return {
isSuccess: true
};
}
catch (error) {
return {
errorMessage: error.message,
errorname: error.name,
isSuccess: false
};
}
}

export function isSupported() {
if (navigator.share)
return true;
return false;
}
Loading

0 comments on commit 57c2afc

Please sign in to comment.