Search
23 Things I Wish I Knew Before Starting Horizon Forbidden West
18.2.2022
Horizon Forbidden West, out now for PlayStation 4 and PlayStation 5, is the size of a dinosaur. Like any big game, it’s a whole lot to take in, and can be overwhelming at times. You can and indeed should figure out a lot of its quirks and secrets on your own. But take it from me, someone who’s...
Fortnite Accidentally Gives Away Its Rarest Item, Takes It Back
11.11.2021
Earlier today, a bunch of Fortnite players found themselves in possession of the Axe of Champions, one of the rarest items in the game, only to have it snatched away after a few minutes. Fortnite developer Epic Games says the whole thing was a big mistake.Read more
Refinable Authenticates Fine Jewelry Sale on Sotheby’s
10.10.2021
PRESS RELEASE. HONG KONG – 10th October 2021 – Refinable, a leading decentralized NFT marketplace, is taking a step forward in realizing advanced use cases for NFT applications. In a keystone partnership with high-end jewelry maker NALAS, and the support of Sotheby’s, Refinable...
Sports NFTs on the Rise with NFL’s Dak Prescott on Ethernity Chain
10.9.2021
plashThere’s something deeply satisfying with owning something both special and unique. Special in that it represents a key person, event, or item. Unique in that it is one of a kind, or even one of few. For sports enthusiasts, this has been a celebrated passion, with cards
Steve Job’s Physical Job Application and Mirror Copy in NFT Form to Faceoff on the Auction Block
22.7.2021
In another world-first for the non-fungible token (NFT) space, Steve Job’s handwritten job application letter in its physical form and an accompanying digital NFT of the same item will go head to head in respective auctions. Auction to Expose How Collectors Value Different Formats As NFTs...
Preview to Full Content Page Transition
7.4.2021
An experimental page transition concept for magazines and blogs where an excerpt item opens for a full page view.
The post Preview to Full Content Page Transition appeared first on Codrops
Dvision Network Reveals First NFT Character From Limited Edition Series
31.3.2021
PRESS RELEASE. Blockchain-based virtual reality platform Dvision Network is finally releasing the first limited-edition NFT item that will be placed for auction on OpenSea Marketplace. Dvision revealed this in a tweet on March 30, 2021. Dvision Boy First Character from Limited Edition Series...
Latest Division 2 Patch Brings Bland Resident Evil Items And A Beautiful New Next-Gen Framerate
4.2.2021
On February 2 The Division 2 received its latest update, Title Update 12.1, which added a bunch of Resident Evil-themed items as part of a new apparel event. More importantly, it updated the PS5 and Xbox Series X/S versions to run at 60 frames per second, allowing console players to experience...
Evangelion Is Teaming Up With Anna Sui For Fashion Items In Japan
13.1.2021
Over the years, Evangelion has done all sorts of collaborations, but its latest, with fashion designer Anna Sui, is one of the more interesting.Read more
Chinese State-Run Media Believe BTC Price Surge Is Just ‘Hype’ While Praising Blockchain
3.12.2020
Two Chinese state-run media outlets have published a brief news item urging citizens to focus more on blockchain technology than on the “hype” of the recent surging Bitcoin prices across the board. China’s Government to Focus on Blockchain Both Sina and Xinhuanet have stated that...
To grid or not to grid
20.8.2020
Sarah Higley does accessibility work and finds that “tables and grids are over-represented in accessibility bugs.”
The drum has been banged a million times: don’t use a <table> for layout. But what goes around comes around. What’s the the #1 item in a list...
Creating a Menu Image Animation on Hover
1.7.2020
A tutorial on how to create a hover effect for a menu where images appear with an animation on each item.
The post Creating a Menu Image Animation on Hover appeared first on Codrops
Flexbox and absolute positioning
18.3.2020
Chen Hui Jing notes that when you absolutely position a flex item, it's no longer part of the flex layout. Except... it kinda is a little bit. If you make the child position: absolute; but don't apply any top/right/bottom/left properties, then flexbox alignment will still apply to it.
It's odd...
While You Weren’t Looking, CSS Gradients Got Better
14.2.2020
One thing that caught my eye on the list of features for Lea Verou's conic-gradient() polyfill was the last item:
Supports double position syntax (two positions for the same color stop, as a shortcut for two consecutive color stops with the same color)
Surprisingly, I recently discovered most...
How Auto Margins Work in Flexbox
6.1.2020
Robin has covered this before, but I've heard some confusion about it in the past few weeks and saw another person take a stab at explaining it, and I wanted to join the party.
Say you have a flex container with some flex items inside that don't fill the whole area.
See the Pen
ZEYLVEX...
Finally, it Will Be Easy to Change the Color of List Bullets
14.11.2019
In my germinating years, the general advice was this:
<ul>
<li><span>List item</span></li>
<!-- ... -->
</ul>
li { color: red; } /* bullet */
li span (color: black; } /* text */
Not terrible, but not great. You're "resetting" everything...
Paperform
26.9.2019
Buy or build is a classic debate in technology. Building things yourself might feel less expensive because there is no line item on your credit card bill, but has cost in the form of time. Buying things, believe it or not, is usually less expensive when it comes to technology that isn't your core...
Reusable Popovers to Add a Little Pop
26.8.2019
A popover is a transient view that shows up on top of a content on the screen when a user clicks on a control button or within a defined area. For example, clicking on an info icon on a specific list item to get the item details. Typically, a popover includes an arrow pointing to the location from...
Staggered CSS Transitions
14.8.2019
Let's say you wanted to move an element on :hover for a fun visual effect.
@media (hover: hover) {
.list--item {
transition: 0.1s;
transform: translateY(10px);
}
.list--item:hover,
.list--item:focus {
transform: translateY(0);
}
}
Cool cool. But what if you had several list...
Weekly Platform News: CSS ::marker pseudo-element, pre-rendering web components, adding Webmention to your site
18.7.2019
In this week's roundup: datepickers are giving keyboard users headaches, a new web component compiler that helps fight FOUC, we finally get our hands on styling list item markers, and four steps to getting webmentions on your site.
The post Weekly Platform News: CSS ::marker pseudo-element...