Skip to content

Commit f27b916

Browse files
committed
update CSS styles and add new project ideas with images
1 parent 300b498 commit f27b916

File tree

9 files changed

+19
-18
lines changed

9 files changed

+19
-18
lines changed

css/input.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ body {
6565
}
6666

6767
.entry-list .title {
68-
@apply text-inherit text-lg decoration-dotted underline hover:decoration-solid
68+
@apply text-inherit text-lg decoration-dotted underline underline-offset-2 hover:decoration-solid
6969
}
7070

7171
footer a {
@@ -195,7 +195,7 @@ article td {
195195
}
196196

197197
article img {
198-
@apply mx-auto rounded-lg;
198+
@apply mx-auto;
199199
}
200200

201201
article figcaption {

ideas/external/brick-calendar.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: Brick Calendar
3+
date: 2025-04-21
4+
url: https://github.com/ldgrp/brick-calendar
5+
meta-img: /images/brick-calendar.png
6+
---
7+

posts/external/2024-04-30-language-detection.md renamed to ideas/external/language-detection.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
title: N-Gram Language Detection in JavaScript
33
date: 2024-04-30
44
url: https://ldgrp.me/sandbox/ngram-language-detection
5+
meta-img: /images/language-detection.png
56
---

images/brick-calendar.png

157 KB
Loading

images/language-detection.png

38.7 KB
Loading

index.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,25 @@ Senior Software Engineer at [Hall][hall]
2121
- Functional programming
2222
- Real-time collaboration
2323
- [Coffee][coffee]
24-
- Cooking
25-
- Baking
26-
- [Music][spotify]
24+
- Cooking / Baking
2725
- [Running][strava]
2826
- [Cycling][strava]
27+
- Snowboarding
2928
- Guitar
3029
- 3D printing
3130
:::
3231

33-
34-
## Posts
32+
## Projects
3533
::: { .posts }
36-
$partial("templates/post-list.html")$
34+
$partial("templates/ideas-list.html")$
3735
:::
3836

39-
## [Ideas][ideas]
40-
37+
## Posts
4138
::: { .posts }
42-
$partial("templates/ideas-list.html")$
39+
$partial("templates/post-list.html")$
4340
:::
4441
:::
4542

46-
4743
[email]: mailto:[email protected]
4844
[github]: https://github.com/ldgrp
4945
[linkedin]: https://linkedin.com/in/ldgrp

templates/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<span>Leo Orpilla III</span>
44
</a>
55
<div class="sm:absolute m-0 sm:m-4 top-0 right-0">
6-
<button aria-label="Toggle Dark Mode" id="theme-toggle" type="button" class="text-gray-500 dark:text-gray-400 hover:text-yellow-600 dark:hover:text-yellow-500 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5">
6+
<button aria-label="Toggle Dark Mode" id="theme-toggle" type="button" class="text-gray-500 dark:text-gray-400 hover:text-yellow-600 dark:hover:text-yellow-500 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 text-sm p-2.5">
77
<svg id="theme-toggle-dark-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path></svg>
88
<svg id="theme-toggle-light-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z" fill-rule="evenodd" clip-rule="evenodd"></path></svg>
99
</button>

templates/ideas-list.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@
1212
</div>
1313
<div class="metadata">
1414
<span class="date">$date$</span>
15-
$if(status)$
16-
<span class="status status-$status$">$status$</span>
17-
$endif$
1815
</div>
19-
<a class="title" href="$url$">$title$</a>
16+
<a class="title group-hover:decoration-solid" href="$url$">$title$</a>
2017
</li>
2118
$endfor$
2219
</ul>

templates/post-list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ul class="entry-list">
22
$for(posts)$
3-
<li>
3+
<li class="group">
44
<div class="date">$date$</div>
55
<a class="title" href="$url$">$title$</a>
66
</li>

0 commit comments

Comments
 (0)