-
Notifications
You must be signed in to change notification settings - Fork 0
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 57c2afc
Showing
657 changed files
with
2,250 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 @@ | ||
* -text |
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,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> |
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,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; | ||
} | ||
} |
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,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; | ||
} |
Oops, something went wrong.