Search
Today in Crypto: Cryptocurrency is 'Inevitable', Two Hacks, OKCoin Pauses USD Deposits, Beatport & Polkadot's Music Platform, Alchemy Notify's Custom Webhooks
13.3.2023
Get your daily, bite-sized digest of cryptoasset and blockchain-related news – investigating the stories flying under the radar of today’s crypto news.__________...
Read More: Today in Crypto: Cryptocurrency is 'Inevitable', Two Hacks, OKCoin Pauses USD Deposits, Beatport & Polkadot's Music...
Making Calendars With Accessibility and Internationalization in Mind
13.3.2023
Doing a quick search here on CSS-Tricks shows just how many different ways there are to approach calendars. Some show how CSS Grid can create the layout efficiently. Some attempt to bring actual data into the mix. Some …
Making Calendars With Accessibility and Internationalization in Mind...
Coinbase Launches Wallet-as-a-Service to Bring Millions to Web3
9.3.2023
On March 8, Coinbase announced the launch of its Wallet-as-a-Service (WaaS) product. The WaaS product aims to “bring the next hundred million consumers into Web3 through a seamless wallet-onboarding experience.” The Coinbase WaaS offers wallet infrastructure application programming...
An Approach to Lazy Loading Custom Elements
13.2.2023
We’re fans of Custom Elements around here. Their design makes them particularly amenable to lazy loading, which can be a boon for performance.
Inspired by a colleague’s experiments, I recently set about writing a simple auto-loader: Whenever a custom …
An Approach to Lazy Loading...
Overwatch 2's ‘Sexual Harassment Simulator’ Mode Made A Brief Return
24.1.2023
Trigger warning: sexual assault and harassment.Read more
Cardano ecosystem set to expand with custom-built sidechains
13.1.2023
The toolkit will allow for creators of sidechains to choose their own consensus mechanism and other application-specific features, whilst inheriting the security of the main chain
Web3 Applications Will Increasingly Be Built on Custom Blockchains, Says Ankr’s Head of Product
16.12.2022
As blockchain developers compete for traffic and resources for their respective dapps (decentralized applications), the downside to this, according to some in the industry, can be a poor user experience which in turn undermines the mass adoption cause. Therefore, unless current blockchains —...
Saving Settings for a Custom WordPress Block in the Block Editor
12.12.2022
We’ve accomplished a bunch of stuff in this series! We created a custom WordPress block that fetches data from an external API and renders it on the front end. Then we took that work and extended it so the data …
Saving Settings for a Custom WordPress Block in the Block Editor originally...
Creating a Settings UI for a Custom WordPress Block
17.11.2022
So far, we’ve covered how to work with data from an external API in a custom WordPress block. We walked through the process of fetching that data for use on the front end of a WordPress site, and how to …
Creating a Settings UI for a Custom WordPress Block originally published on CSS-Tricks...
Classy and Cool Custom CSS Scrollbars: A Showcase
14.11.2022
In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand with a matching scrollbar. The old-fashioned chrome scrollbar just doesn’t fit in as …
Classy and Cool Custom CSS Scrollbars:...
CSS Grid and Custom Shapes, Part 3
11.11.2022
After Part 1 and Part 2, I am back with a third article to explore more fancy shapes. Like the previous articles, we are going to combine CSS Grid with clipping and masking to create fancy layouts for image …
CSS Grid and Custom Shapes, Part 3 originally published on CSS-Tricks, which...
The New PS5, Xbox Custom Controllers Will Have You Breaking The Bank
18.10.2022
In 2015, Microsoft revealed the Elite Series Xbox controller, a premium gamepad for players who can recount their Call of Duty kill/death ratio faster than their Social Security number. An entire console generation later and Sony’s now getting in the game too with the DualSense Edge, a souped...
16 Incredible Steam Deck Custom Start Animations
12.10.2022
As you might’ve heard Steam Deck users have been eating good this week, between the surprise launch of the official Dock accessory and a big software update. They’re also celebrating an unexpected feature of Valve’s mini PC: The ability to customize the boot animation. There’s an entire subreddit...
Bored Apes, Moonbirds to feature on NFT-customized Mastercard debit cards
27.9.2022
The customizable card will only support NFT avatars from select blue chip collections, subject to Mastercard’s design standards and an owner verification process
How I Made an Icon System Out of CSS Custom Properties
22.9.2022
SVG is the best format for icons on a website, there is no doubt about that. It allows you to have sharp icons no matter the screen pixel density, you can change the styles of the SVG on hover …
How I Made an Icon System Out of CSS Custom Properties originally published on CSS-Tricks, which...
CSS :autofill
22.9.2022
Autofilling HTML input elements is a frequent user action that can drastically improve user experience. Hell, we all autofill for our passwords and address information. But what control do we have when input elements have been autofilled? To add custom CSS styles to inputs whose contents have been...
Making a Real-Time Clock With a Conic Gradient Face
19.9.2022
Gradients have been a part of the CSS spectrum for quite some time now. We see a lot of radial and linear gradients in a lot of projects, but there is one type of gradient that seems to be a …
Making a Real-Time Clock With a Conic Gradient Face originally published on CSS-Tricks, which...
Interpolating Numeric CSS Variables
30.8.2022
We can make variables in CSS pretty easily:
:root {
--scale: 1;
}
And we can declare them on any element:
.thing {
transform: scale(--scale);
}
Even better for an example like this is applying the variable on a user …
Interpolating Numeric CSS Variables originally published...
Using CSS Cascade Layers to Manage Custom Styles in a Tailwind Project
24.8.2022
If a utility class only does one thing, chances are you don’t want it to be overridden by any styles coming from elsewhere. One approach is to use !important to be 100% certain the style will be applied, regardless of …
Using CSS Cascade Layers to Manage Custom Styles in a Tailwind Project...
Custom SVG Cursors with an Interactive Emitter Effect
24.8.2022
Several interactive cursor effects made with JavaScript and SVG