Skip to content

Commit 348364a

Browse files
committed
Add a table and modify gifts to make it easier to scan
1 parent 8aa402e commit 348364a

3 files changed

Lines changed: 56 additions & 25 deletions

File tree

src/gifts.md

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,35 @@ title: Gifts 🎈
44
date: Last Modified
55
---
66

7-
I hope this doesn't come across the wrong way, honestly I really don't expect anything. But I also know how hard it can be to buy things for people **when you want to** so I kinda wanted to supply something that makes that somewhat easier? I don't know.
7+
I hope this doesn't come across the wrong way, honestly I really don't expect anything. But I also know how hard it can be to buy things for people **when you want to** so I wanted to write something to take the guesswork out.
88

9-
I'll leave this list up, if you want to buy something then honestly, you're wonderful and I don't deserve you, but seriously thank you! 🥰
9+
But what I still love the most is spending time with you!
1010

11-
## Less than £25
11+
Here are some things we could do together
1212

13-
- Coffee beans
14-
- Socks
15-
- [Cycling cap](https://uk.pedaled.com/collections/men-accessories-hats-caps)
16-
- [Sticker pack](https://www.mahalomydude.com/en-gb/collections/stickers)
17-
18-
## £25 - £100
19-
20-
Holy crap please don't buy anything on here, really! But if you do then thank you! you're way too generous!
21-
22-
- [Coffee grinder](https://www.amazon.co.uk/KINGrinder-Straight-Handle-Adjustable-Aeropress/dp/B0CVSDMXFH)
23-
- [Powerbank](https://www.amazon.co.uk/Anker-Portable-PowerCore-Essential-Technology/dp/)
24-
- [Rapha base layer merino (XS)](https://www.rapha.cc/gb/en/shop/mens/base-layers)
25-
26-
## Also
27-
28-
What I love the most is spending time with you. Here are some things we could do together
29-
30-
- Climbing
3113
- A bike ride
3214
- Go for a meal / watch a film
33-
- A city break
34-
- Go shopping
35-
36-
Thank you
15+
- Explore a new place together
16+
- Shopping
17+
- Bowling / Arcades
18+
- Etc
19+
20+
I'll leave this list up, if you want to buy something then honestly, you're too generous.
21+
22+
Seriously thank you! 🥰
23+
24+
| Gift | Price (approx) | |
25+
| -------------- | -------------- | ------------------------ |
26+
| Sticker Pack | < £25 | [Mahalo My Dude] [PiHut] |
27+
| Coffee Beans | < £25 | |
28+
| Socks | < £25 | |
29+
| Cycling Cap | £35 | [Pedaled] |
30+
| Coffee Grinder | £66 | [Amazon] |
31+
| Powerbank | £60-£90 | |
32+
| Base Layer | £80 | [Rapha] |
33+
34+
[Mahalo My Dude]: https://www.mahalomydude.com/en-gb/collections/stickers
35+
[PiHut]: https://thepihut.com/collections/maker-stickers-badges
36+
[Pedaled]: https://uk.pedaled.com/collections/men-accessories-hats-caps
37+
[Amazon]: https://www.amazon.co.uk/KINGrinder-Straight-Handle-Adjustable-Aeropress/dp/B0CVSDMXFH
38+
[Rapha]: https://www.rapha.cc/gb/en/shop/mens/base-layers

src/scss/base.table.scss

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
table {
2+
border-collapse: collapse;
3+
width: 100%;
4+
}
5+
6+
th,
7+
td {
8+
border: 1px solid #ddd;
9+
padding: 12px 15px;
10+
text-align: left;
11+
}
12+
13+
thead th {
14+
background-color: $colour-grey;
15+
color: $colour-space-grey;
16+
font-weight: bold;
17+
}
18+
19+
// Zebra-striping (alternating row colors) for readability
20+
tbody tr:nth-child(even) {
21+
background-color: lighten($colour-grey, 20%);
22+
}
23+
24+
// Highlight rows that are currently hovered
25+
tbody tr:hover {
26+
background-color: #eee;
27+
transition: background-color 0.3s ease;
28+
}

src/scss/main.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
@import "generic.spacing";
1111

1212
@import "base.body";
13+
@import "base.table";
1314
@import "base.heading";
1415
@import "base.link";
1516
@import "base.quotation";

0 commit comments

Comments
 (0)