Skip to content

Commit 6d38eab

Browse files
authored
Merge pull request #77 from diekus/pwastore-masonry
Updates titles in cards
2 parents f59ea8b + 7fd8e30 commit 6d38eab

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

pwa-pwastore/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,56 +41,56 @@ <h2>Instructions</h2>
4141

4242
<article class="app_entry">
4343
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/pwa-getting-started/icon512.png" width="75" height="75" class="app_icon">
44-
<h2>Temperature converter - PWA getting started demo app</h2>
44+
<h2><a href="https://microsoftedge.github.io/Demos/pwa-getting-started/index.html" target="_blank">Temperature converter</a> - PWA getting started demo app</h2>
4545
<p class="app_descrip">A simple PWA demo app that converts temperatures. Used for <a href="https://learn.microsoft.com/microsoft-edge/progressive-web-apps/how-to/" target="_blank">Get started with Progressive Web Apps.</a></p>
4646
<button id="installPwaGettingStarted" class="btn_install">Install</button>
4747
</article>
4848

4949
<article class="app_entry">
5050
<img src="images/app-icons/pwinter.png" width="75" height="75" class="app_icon">
51-
<h2>The PWinter</h2>
51+
<h2><a href="https://diek.us/pwinter" target="_blank">The PWinter</a></h2>
5252
<p class="app_descrip">The PWinter is your custom PWA icon generator!</p>
5353
<button id="installPwinter" class="btn_install">Install</button>
5454
</article>
5555

5656
<article class="app_entry">
5757
<img src="images/app-icons/pwamp.png" width="75" height="75" class="app_icon">
58-
<h2>PWAmp</h2>
58+
<h2><a href="https://microsoftedge.github.io/Demos/pwamp/" target="_blank">PWAmp</a></h2>
5959
<p class="app_descrip">A music player PWA demo to play local audio files.</p>
6060
<button id="installPwamp" class="btn_install">Install</button>
6161
</article>
6262

6363
<article class="app_entry">
6464
<img src="images/app-icons/bubble.png" width="75" height="75" class="app_icon">
65-
<h2>Bubble</h2>
65+
<h2><a href="https://diek.us/bubble" target="_blank">Bubble</a></h2>
6666
<p class="app_descrip">360° equirectangular picture viewer. For images from 360 cameras.</p>
6767
<button id="installBubble" class="btn_install">Install</button>
6868
</article>
6969

7070
<article class="app_entry">
7171
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/email-client/img/icon-256.png" width="75" height="75" class="app_icon">
72-
<h2>Email Client demo</h2>
72+
<h2><a href="https://microsoftedge.github.io/Demos/email-client/" target="_blank">Email Client demo</a></h2>
7373
<p class="app_descrip">A simulated email client PWA that demonstrates how to use PWA protocol handlers.</p>
7474
<button id="installEmailClient" class="btn_install">Install</button>
7575
</article>
7676

7777
<article class="app_entry">
7878
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/1DIV/dist/img/icon-256.png" width="75" height="75" class="app_icon">
79-
<h2>1DIV</h2>
79+
<h2><a href="https://microsoftedge.github.io/Demos/1DIV/dist/index.html" target="_blank">1DIV</a></h2>
8080
<p class="app_descrip">A CSS sandbox PWA that demonstrates the Window Controls Overlay feature.</p>
8181
<button id="install1Div" class="btn_install">Install</button>
8282
</article>
8383

8484
<article class="app_entry">
8585
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/wami/favicon-256.png" width="75" height="75" class="app_icon">
86-
<h2>wami</h2>
86+
<h2><a href="https://microsoftedge.github.io/Demos/wami/index.html" target="_blank">wami</a></h2>
8787
<p class="app_descrip">An image manipulation demo app to crop, resize, or add effects to images.</p>
8888
<button id="installWami" class="btn_install">Install</button>
8989
</article>
9090

9191
<article class="app_entry">
9292
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/pwa-application-title/icon.png" width="75" height="75" class="app_icon">
93-
<h2>Application Title demo</h2>
93+
<h2><a href="https://microsoftedge.github.io/Demos/pwa-application-title/" target="_blank">Application Title demo</a></h2>
9494
<p class="app_descrip">A demo web app to showcase the <code>application-title</code> meta tag.</p>
9595
<button id="installappTitle" class="btn_install">Install</button>
9696
</article>

pwa-pwastore/styles/pwastore.css

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ p {
9191

9292
a {
9393
color: var(--link);
94+
text-decoration: none;
95+
}
96+
97+
a:hover{
98+
text-decoration: underline;
9499
}
95100

96101
code {
@@ -200,12 +205,13 @@ footer {
200205
display: flex;
201206
flex-direction: column;
202207
align-items: center;
203-
transition: transform ease-in-out .3s;
208+
transition: transform ease-in-out .3s, box-shadow ease-in-out .3s;
209+
box-shadow: #3D3D3D99 0px 0px 0px;
204210
}
205211

206212
.app_entry:hover {
207213
transform: scale(1.03);
208-
box-shadow: silver;
214+
box-shadow: 10px 10px 20px #3D3D3D99;
209215
}
210216

211217
.app_icon {

0 commit comments

Comments
 (0)