gure><p id="c220"><b>Slow travel allows me to take the time</b> to wander through cobbled streets, finding hidden gems and cute coffee shops.</p><p id="100d"><b>Slow travel allows me to live like a local</b> and entirely emerges rather than being a tourist. You not only learn about the culture of a new country but also learn more about yourself and what you love.</p><p id="a135"><b>Slow travel is energy saving. </b>We’ve got time to relax, time to watch the world go by whilst waiting for your freshly brewed coffee.</p><p id="85b7"><b>Slow travel helps me avoid crowds of tourists. </b>We can visit the places on your list but choosing to go earlier in the day or mid-week means avoiding the queues.</p><p id="fcaa"><b>Travelling slow allows me to make new connections. </b>Tip for you: make friends with the local baristas, they know all the city secrets.</p><p id="481b"><b>Slow travel saves me time. </b>If you’re constantly on the move, you waste a lot of time transferring from one place to another. Spending time at airports or on trains, buses, and accommodation check-ins and checkouts can be draining.</p><figure id="dc3b"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/0*afSSnqBgYFFKYd7Y"><figcaption>Photo by <a href="https://unsplash.com/@mantashesthaven?utm_source=medium&utm_medium=referral">Mantas Hesthaven</a> on <a href="https://unsplash.com?utm_source=medium&utm_medium=referral">Unsplash</a></figcaption></figure><p id="4611">Slow travel means all of that time can be spent <b>living in the moment</b> and <b>learning something new.</b></p><p id="148b">Let your body recharge, avoid travel fatigue and just be…</p><p id="38bd">Want access to all stories on Medium? Consider signing up for a Medium membership…<a href="https://allthingsremote.medium.com/membership"><b>It’ll cost you $5 a month</b></a><b>.</b></p><p id="e626">If you’re already part of the crew, <a href="https://allthingsremote.medium.com/subscribe">signup here, for my <b>free</b> newsletter!</a></p><p id="92de">If you liked this article, here are some other articles you’ll love:</p><div id="a441" class="link-block">
<a href="https://readmedium.com/4-downsides-of-the-nomadic-lifestyle-no-one-tells-you-about-9d14da90f85b">
<div>
<div>
<h2>4 Downsides Of The Nomadic Lifestyle No One Tell
Options
s You About</h2>
<div><h3>What you see on social media isn’t always real</h3></div>
<div><p>medium.com</p></div>
</div>
<div>
<div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*qi1Y7ZVWGplcYlGV)"></div>
</div>
</div>
</a>
</div><div id="2316" class="link-block">
<a href="https://readmedium.com/first-time-digital-nomad-7-tips-to-succeed-at-your-new-life-6c20205ad9c8">
<div>
<div>
<h2>First-Time Digital Nomad? 7 Tips To Succeed At Your New Life.</h2>
<div><h3>How to really get going as a Digital Nomad.</h3></div>
<div><p>medium.com</p></div>
</div>
<div>
<div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*vwTZod86O9Of8fce)"></div>
</div>
</div>
</a>
</div><div id="dbcd" class="link-block">
<a href="https://readmedium.com/the-future-of-remote-working-how-should-we-replace-our-saved-commute-time-66048a7ed379">
<div>
<div>
<h2>The Future Of Remote Working: How Should We Replace Our Saved Commute Time?</h2>
<div><h3>No more early starts, tube delays or expensive trains.</h3></div>
<div><p>medium.com</p></div>
</div>
<div>
<div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*oyUVJIBxlLvZ8sR-)"></div>
</div>
</div>
</a>
</div><div id="1ae1" class="link-block">
<a href="https://readmedium.com/how-living-full-time-in-airbnbs-saves-me-money-4030e8815090">
<div>
<div>
<h2>How Living Full Time in Airbnbs Saves Me Money</h2>
<div><h3>Ready to save money yet also experience an unparalleled level of freedom and flexibility?</h3></div>
<div><p>medium.com</p></div>
</div>
<div>
<div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*yVhtGw-GoO4H_fRU)"></div>
</div>
</div>
</a>
</div></article></body>
How I Stopped Writing CSS
I changed the way I use CSS thanks to Tailwind
Tailwind CSS classes
As a frontend developer focused on the CSS architecture, I like to use the best methodologies to write my code. I always do research to understand the frameworks that suit my needs and can be scalable.
A few months ago talking with my colleague the name of a CSS framework came out: Tailwind CSS.
Usually, I used Bootstrap for most of my projects, but a few weeks ago, I started to use Tailwind and it completely changed my way of using CSS.
Tailwind CSS is a highly customizable, low-level CSS framework that gives you all of the building blocks you need to build bespoke designs without any annoying opinionated styles you have to fight to override.
The truth is that many CSS frameworks have too many components predesigned and many times we are forced to overwrite them, especially when we work with highly customized UIs.
Instead of predesigned components, Tailwind provides utility classes that let you build your custom designs without ever leaving your HTML.
Let’s look at some examples of how my way of writing CSS has changed since I started using Tailwind.
card component
Now I would like to show you an example of creating this card component using Tailwind and only CSS.
It’s impressive to see how you can create a component like this without even a line of code.
Do not you believe it?
I will prove it with a practical example.
<pclass="card__description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus quia, nulla! Maiores et perferendis eaque, exercitationem praesentium nihil.</p>
<pclass="text-gray-700 mb-16">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus quia, nulla! Maiores et perferendis eaque, exercitationem praesentium nihil.</p>
We have the same output(the card component) but without writing any line of CSS.
You can save 29 lines of code only with a simple component, so think on large scale projects how much time and code you can save.
Something else?
The HTML is less readable, but the effort is much less!
Let’s see also how to create the same things as Bootstrap
If you have always used Bootstrap, I understand that can be scary to change CSS framework and switch to something completely based on utility classes.
Now I will show you how to replicate some of the Bootstrap classes with Tailwind CSS.
In Bootstrap you have classes that contain multiple properties while in Tailwind CSS each class corresponds only to one property.
What do I miss of Bootstrap?
Some of the JavaScript features!
Bootstrap, unlike Tailwind, also has a JavaScript part.
Some JavaScript features that I used most were the modals, collapse, tabs and tooltips.
Using Tailwind, I had to recreate these features by myself.
But to be honest, this effort was minimal.
Bootstrap or Tailwind CSS?
Depending on your needs, for many projects, Bootstrap can be fine, but for projects that have very customized User Interfaces there is no doubt, Tailwind gives you much more flexibility and freedom.
If you decide to use Tailwind, I suggest you to use PurgeCSS to remove the unused CSS. This method is also used by Mozilla, they built Firefox Send with Tailwind and used PurgeCSS to remove the unnecessary CSS.
I have used Bootstrap for years and it’s always been fast and easy to use. But since I started using Tailwind, I feel much more free and my CSS code has dropped more than 70%.
Well, yes I didn’t completely stop but if I consider the amount of code that I used to write before, I can say that it’s like I have almost stopped to write CSS.
In the beginning, it can be challenging to write and remember all those classes. I can tell you though that once you get used to it, you will love it, I guarantee that.