15 of the Best WordPress Themes For Travel Websites

For travel enthusiast and professionals in the travel industry, WordPress is a heaven that offers zillions of fantastic themes. Tourism is a billion-dollar business and a staggering number of travelers use the WordPress platform to share their knowledge, insights, and experiences of travel and travel industry. These versatile themes offer varied options for personalization as …
The post 15 of the Best WordPress Themes For Travel Websites appeared first on Torque.
Read more

Design Systems at GitHub

Here’s a nifty post by Diana Mounter all about the design systems team at GitHub that details how the team was formed, the problems they’ve faced and how they’ve adapted along the way:

When I started working at GitHub in late 2015, I noticed that there were many undocumented patterns, I had to write a lot of new CSS to implement designs, and that there weren’t obvious underlying systems connecting all the pieces together. I knew things could be better …

The post Design Systems at GitHub appeared first on CSS-Tricks.

Read more

20+ Laptop Mockup Templates (PSD & PNG)

When it comes to presenting website and graphic designs to clients, using a laptop mockup can substantially boost its appeal. Do you have the right laptop mockup to take your work to the next level? There are many different ways you can use laptop mockup templates. You can use them to showcase your designs in […]
Read more

Building a Complex UI Animation in React, Simply

Let’s use React, styled-components, and react-flip-toolkit to make our own version of the animated navigation menu on the Stripe homepage. It’s an impressive menu with some slick animation effects and the combination of these three tools can make it relatively easy to recreate.

This is an intermediate-level walkthrough that assumes familiarity with React and basic animation concepts. Our React guide is a good place to start.

Here’s what we’re aiming to make:

See the Pen React Stripe Menu

The post Building a Complex UI Animation in React, Simply appeared first on CSS-Tricks.

Read more

Fast, Good, Local Site Search with Jetpack

If you have, say, 20 posts/pages on your WordPress site, the search functionality that is baked right into your self-hosted WordPress site will probably do a great job. Search is a pretty cool feature to ship with WordPress, truth be told. But as a site grows, you’ll find limits. How it works behind the scenes is a touch over my head, but as I understand it, it does a MySQL LIKE query on your post titles and post content. It

The post Fast, Good, Local Site Search with Jetpack appeared first on CSS-Tricks.

Read more

Unused

I recently wrote Here’s the thing about “unused CSS” tools, where I tried to enumerate all the challenges any tool would have in finding truly “unused” CSS. The overarching idea is that CSS selectors match elements in the DOM, and those elements in the DOM come from all sorts of places: your static templates, dynamic templates based on server-side state, and of course, JavaScript, which can manipulate the DOM in any way at all, including pull things from APIs …

The post Unused appeared first on CSS-Tricks.

Read more

Emojis as Icons

There are lots of unicode symbols that make pretty good icons already, like arrows (←), marks (✘), and objects (✂︎).You can already colorize these like a normal font glyph. Then, there are emojis, those full-color suckers we all know about. What if you could take just the shape of an emoji and use it like a normal glyph? You can!

Preethi Sam shows how:

.icon {
color: transparent;
text-shadow: 0 0 #ec2930;
}

Plus, an alternate technique using background-clip. …

The post Emojis as Icons appeared first on CSS-Tricks.

Read more