Browse Source

feat(Website) Added offline mode, updated images

main
Jonathan McCaffrey 4 years ago
parent
commit
5d5a0bde59
  1. 8
      IGP/Pages/Home/Parts/ContentHighlightComponent.razor
  2. 2
      IGP/Pages/StreamsPage.razor
  3. BIN
      IGP/wwwroot/favicon.ico
  4. BIN
      IGP/wwwroot/icon-192.png
  5. BIN
      IGP/wwwroot/icon-512.png
  6. BIN
      IGP/wwwroot/image/hero/Build.png
  7. BIN
      IGP/wwwroot/image/hero/Database.png
  8. BIN
      IGP/wwwroot/image/hero/Notes.png
  9. BIN
      IGP/wwwroot/image/hero/Streams.png
  10. 4
      IGP/wwwroot/index.html

8
IGP/Pages/Home/Parts/ContentHighlightComponent.razor

@ -45,9 +45,11 @@
.contentHighlightImage {
border: 1px solid rgba(0,0,0,0.5);
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
height: 400px;
width: 400px;
margin: auto;
width: calc(100% - 32px);
margin-left: auto;
margin-right: auto;
margin-top: 12px;
margin-bottom: 12px;
}
.contentHighlightCallToAction {

2
IGP/Pages/StreamsPage.razor

@ -8,7 +8,7 @@
<PaperComponent>
<InfoBodyComponent>
<InfoQuestionComponent>When and where are you streaming?</InfoQuestionComponent>
<InfoAnswerComponent>I stream Sunday updates on <a href="https://www.twitch.tv/iremirror" target="_blank">Twitch</a>.</InfoAnswerComponent>
<InfoAnswerComponent>I stream Sunday updates on <a href="https://www.twitch.tv/jonathanmccaffrey" target="_blank">Twitch</a>.</InfoAnswerComponent>
</InfoBodyComponent>
<InfoBodyComponent>
<InfoQuestionComponent>What exactly are you streaming?</InfoQuestionComponent>

BIN
IGP/wwwroot/favicon.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 123 KiB

BIN
IGP/wwwroot/icon-192.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 22 KiB

BIN
IGP/wwwroot/icon-512.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 58 KiB

BIN
IGP/wwwroot/image/hero/Build.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 666 KiB

BIN
IGP/wwwroot/image/hero/Database.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 660 KiB

BIN
IGP/wwwroot/image/hero/Notes.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 KiB

After

Width:  |  Height:  |  Size: 2.8 MiB

BIN
IGP/wwwroot/image/hero/Streams.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

After

Width:  |  Height:  |  Size: 2.6 MiB

4
IGP/wwwroot/index.html

@ -11,6 +11,9 @@
<link href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet"/>
<link href="IGP.styles.css" rel="stylesheet"/>
<link href="manifest.json" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
</head>
<body style="background-color: #161618; color: white;">
@ -33,6 +36,7 @@
applicationCulture: 'en-US'
});
</script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
</body>
</html>

Loading…
Cancel
Save