diff --git a/config/plugins/markdown.js b/config/plugins/markdown.js index 3c598c7..c419f42 100644 --- a/config/plugins/markdown.js +++ b/config/plugins/markdown.js @@ -51,6 +51,7 @@ const markdownLib = markdownIt({ .use(markdownItFootnote) .use(markdownitMark) .use(markdownitAbbr) + .use(markdownItCallouts) .use(markdownItEleventyImg, { imgOptions: { widths: [300, 600, 1000, 1440], @@ -65,8 +66,7 @@ const markdownLib = markdownIt({ (max-width: 1440px) 1440px, 100%` } - }) - .use(markdownItCallouts); + }); markdownLib.renderer.rules.emoji = function(token, idx) { return ``; diff --git a/src/blog/posts/2024/6/upgrading-my-tyres-and-tubes.md b/src/blog/posts/2024/6/upgrading-my-tyres-and-tubes.md new file mode 100644 index 0000000..d87f4dc --- /dev/null +++ b/src/blog/posts/2024/6/upgrading-my-tyres-and-tubes.md @@ -0,0 +1,24 @@ +---json +{ + "title": "Upgrading my tyres and tubes", + "date": "2024-06-28T09:33:33.170Z", + "tags": [ + "cycling", + "BikeTooter" + ], + "excerpt": "After never really wanting to spend the extra money, I finally replaced my stock Continental Ultra Sport III tyres with Continental Grand Prix 5000, and I was blown away." +} +--- + +I've never really bought into the idea that spending ludicrous amounts of money on tyres for marginal gains was worth it. Up until now, I've been really happy with my 28mm Contintental Ultra Sport III tyres - according to [bicyclerollingresistance.com](https://www.bicyclerollingresistance.com/road-bike-reviews/continental-ultra-sport-iii-2020) they only have about 6 watts more rolling resistance compared to the Continental Grand Prix 5000's, but are a fraction of the price- I think I've paid about £15 per tyre previously. The ones that came stock on my Ribble Endurance SL Disc were 700x28c wire bead Ultra Sport IIIs, so the heavier option. They've been absolutely fine the whole time, I can't say I've struggled keeping up on club rides or anything like that. + +But, given it was my birthday and I'm getting a new wheelset soon[^1], I thought I'd treat myself. I got a pair of [folding Continental GP 5000s for about £90](https://www.merlincycles.com/continental-gp5000-folding-tyres-with-2-free-inner-tubes-pair-129803.html). I also got some RideNow TPU inner tubes from AliExpress, which I got for £14 for a pack of 4. The inner tubes are _tiny_, but weren't too bad to fit either. Here's one of them next to the spare butyl inner tube that I kept in my saddle bag: + +![Shows a folded pink TPU inner tube next to a black folded "normal" inner tube. The TPU tube is roughly a quarter of the size of the butyl one](./src/images/tpu_butyl_tubes.jpeg) + +Once everything was fitted[^2] onto the wheels, I went for a quick ride to test them out. Holy shit, have I been missing out. The combination of the tyres and inner tubes have dropped something like 300g total from the weight of my wheels, added to the reduction in rolling resistance, just meant that the ride quality was superb. I've noticed a definite increase in my average speed, given that even on solo rides I've been able to maintain a 40+ kph pace over several kilometres, something I don't think I managed frequently before. The tyres feel grippier too, I'm more confident on cornering and on descents. + +I think as a ratio of cost-to-benefit, this might have been one of the most effective upgrades I've made to my bike. I'm looking forward to my new wheels arriving too; the deeper rims, significant reduction in weight, and stiffness from carbon wheels should make for a really nice and comfortable ride. + +[^1]: Once it appears on dry land following a voyage across the Indian Ocean +[^2]: I actually got my local bike shop to fit them because I'm lazy and he could get the logos lined up nicely \ No newline at end of file diff --git a/src/css/exceptions/callout.css b/src/css/exceptions/callout.css index b84b5d2..533987e 100644 --- a/src/css/exceptions/callout.css +++ b/src/css/exceptions/callout.css @@ -1,12 +1,42 @@ .callout { background-color: var(--color-callout-bg); - border: 5px solid var(--color-callout-border); - border-radius: 10px; + border: 2px solid var(--color-callout-border); + /* border-radius: 10px; */ color: var(--color-primary); height: fit-content; - padding: var(--space-size-xs); + padding: var(--space-size-2xs); text-align: center; + p { margin: 0 auto; } + + .callout-title { + display: flex; + align-items: center; + gap: 0.5ch; + + .callout-title-icon svg { + max-height: var(--text-size-s); + } + + .callout-title-inner { + text-transform: capitalize; + } + + > * { + display: flex; + align-items: center; + height: fit-content; + } + } + + .callout-content { + text-align: initial; + margin-top: var(--space-size-xs); + + p { + margin: 0; + } + } } \ No newline at end of file diff --git a/src/css/globals.css b/src/css/globals.css index 3234c43..530ee9a 100644 --- a/src/css/globals.css +++ b/src/css/globals.css @@ -154,5 +154,4 @@ img, picture { max-width: 100%; height: auto; object-fit: cover; - width: auto; } \ No newline at end of file diff --git a/src/images/tpu_butyl_tubes.jpeg b/src/images/tpu_butyl_tubes.jpeg new file mode 100644 index 0000000..ca6c308 Binary files /dev/null and b/src/images/tpu_butyl_tubes.jpeg differ