Skip to content

Commit 165d764

Browse files
committed
quick-whiteboard
1 parent 3dc0125 commit 165d764

File tree

3 files changed

+37
-15
lines changed

3 files changed

+37
-15
lines changed
128 KB
Loading

index.css

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ body {
2626
background: #f1f1f1;
2727
}
2828

29+
body::after {
30+
position: fixed;
31+
bottom: 0;
32+
left: 0;
33+
width: 100%;
34+
height: 256px;
35+
content: "";
36+
background: linear-gradient(to bottom, transparent, #f1f1f1);
37+
pointer-events: none;
38+
}
39+
2940
/* HEADER */
3041

3142
header {
@@ -95,6 +106,7 @@ header .navbar a:hover .link {
95106
.header-svg {
96107
position: relative;
97108
pointer-events: none;
109+
transform: translateY(-2vw);
98110
}
99111

100112
.header-svg svg {
@@ -104,7 +116,7 @@ header .navbar a:hover .link {
104116
/* APPS */
105117

106118
.apps {
107-
margin-top: -5vw;
119+
margin-top: -9vw;
108120
}
109121

110122
.apps .app-row {
@@ -134,7 +146,7 @@ header .navbar a:hover .link {
134146
.apps h3 {
135147
font: 20px/30px "Inter";
136148
color: #000;
137-
margin: 20px 16px;
149+
margin: 20px 32px;
138150
}
139151

140152
.apps .screenshot {
@@ -175,15 +187,6 @@ main {
175187
padding: 0 16px;
176188
}
177189

178-
main .screenshot {
179-
filter: var(--filter-shadow-extra-black);
180-
border-radius: 8px;
181-
margin-top: -21vw;
182-
background: #333;
183-
border: 2px solid rgba(0, 0, 0, 0.25);
184-
max-width: 100%;
185-
}
186-
187190
main h2 {
188191
font: bold 28px/42px "Inter";
189192
margin-top: 96px;
@@ -275,6 +278,8 @@ footer {
275278
justify-content: space-between;
276279
box-sizing: border-box;
277280
margin-top: 128px;
281+
position: relative;
282+
z-index: 1;
278283
}
279284

280285
footer span,
@@ -329,9 +334,7 @@ footer a:hover {
329334
.apps .screenshot {
330335
display: none;
331336
}
332-
}
333337

334-
@media screen and (max-width: 950px) {
335338
.header-svg {
336339
padding-top: 64px;
337340
}
@@ -346,13 +349,20 @@ footer a:hover {
346349
display: none;
347350
}
348351

352+
.apps .column h3 {
353+
margin: 16px 0;
354+
}
355+
349356
main .donate a {
350357
width: 100%;
351358
}
359+
360+
footer span {
361+
margin-bottom: 8px;
362+
}
352363

353364
footer {
354365
flex-direction: column;
355-
gap: 8px;
356366
text-align: center;
357367
}
358368
}

index.html

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,23 @@
4444
<div class="column">
4545
<img class="icon" src="https://raw.githubusercontent.com/ModuleArt/quick-picture-viewer/master/quick-picture-viewer/resources/imgs/picture512.png" />
4646
<h1>Quick Picture Viewer</h1>
47-
<h3>Lightweight, versatile desktop image viewer for Windows</h3>
47+
<h3>Lightweight, versatile desktop image viewer for Windows. The best replacement for the default Windows photo viewer.</h3>
4848
<a id="quick-picture-viewer" href="#"><img src="imgs/icons/windows.png" /><span>Download</span></a>
4949
<a href="https://moduleart.github.io/quick-picture-viewer"><span>More details ↗</span></a>
5050
</div>
5151
</div>
52+
<div class="app-row">
53+
<div class="column">
54+
<img class="icon" src="https://raw.githubusercontent.com/ModuleArt/quick-whiteboard/master/quick-whiteboard/resources/imgs/whiteboard512.png" />
55+
<h1>Quick Whiteboard</h1>
56+
<h3>Lightweight tool to draw or keep notes on your desktop background for Windows.</h3>
57+
<a id="quick-whiteboard" href="#"><img src="imgs/icons/windows.png" /><span>Download</span></a>
58+
<a href="https://github.com/ModuleArt/quick-whiteboard"><img src="imgs/icons/github.png" /><span>GitHub</span></a>
59+
</div>
60+
<div class="column">
61+
<img class="screenshot" src="imgs/screenshots/quick-whiteboard.png" />
62+
</div>
63+
</div>
5264
<div class="app-row">
5365
<div class="column">
5466
<img class="icon" src="imgs/picker512.png" />

0 commit comments

Comments
 (0)