Search
Using the Specificity of :where() as a CSS Reset
12.7.2021
I don’t know about you, but I write these three declarations many times in my CSS:
ul {
padding: 0;
margin: 0;
list-style-type: none;
}
You might yell at me and say I can just put those in my CSS …
The post Using the Specificity of :where() as a CSS Reset appeared first on CSS-Tricks....
Parliament of West Africa Economic Block Cautions Against Use of Cryptocurrencies
11.7.2021
The parliament of the Economic Community of West African States (ECOWAS) has joined the list of African organizations that have cautioned against the use of cryptocurrencies. In its warning to West Africa crypto users, the legislative body insists these digital assets are too volatile and as such...
Crypto world largely silent as little-known exchange announces plans to go public
9.7.2021
The public offering announcement comes less than two months after Bullish launched with $10 billion in capitalization
After Barclays, Santander Bank Blocks Payments to Binance in UK Citing Customer Protection
9.7.2021
Santander Bank in the U.K. has become the latest high street bank in the country to block fund transfers to cryptocurrency exchange Binance. Recently, Barclays and Natwest banks reportedly made a similar move. A number of Santander Bank customers reported on social media that they have received...
Ethereum’s London Hard Fork Scheduled to Commence on August 4
9.7.2021
The highly anticipated Ethereum hard fork is expected to launch on August 4 at block height 12,965,000 according to Ethereum core developers. The London hard fork will add five Ethereum Improvement Proposals (EIPs) that aim to enhance the blockchain. However, the Berlin hard fork was postponed...
Body Toggle
6.7.2021
I appreciate the clarity of this trick that Mikael Ainalem posted over on Reddit:
It’s a one-liner that toggles the class on the <body> so you can mock up different states and toggle between them on click.
<body onclick="this.classList.toggle("active");"
Could …
The post...
Binance disappointed by Barclays’ ‘unilateral action’ to block customer payments
5.7.2021
A Binance spokesperson reiterated to Cointelegraph that the Financial Conduct Authority's recent edict only applied to Binance Markets Limited, or BML, which is a separate legal entity from the main global exchange that operates through Binance.com
Bitcoin Blocks Will Soon Be 27% Easier to Find — Miners Brace for the Largest Difficulty Drop in BTC’s Lifetime
3.7.2021
Bitcoin, the leading crypto asset in terms of market capitalization, has seen the cryptocurrency’s network hashrate drop considerably during the last two weeks. On Saturday, July 3, the network’s mining difficulty will see the largest epoch drop in history as the difficulty is set...
What does `font: 110%/1.4 system-ui` mean?
30.6.2021
I use this line, or one like it, in a lot of quick demos. Not that it’s not a production-worthy line of code—I just tend to be a bit more explicit on bigger projects.
html {
font: 110%/1.4 system-ui;
}
…
The post What does `font: 110%/1.4 system-ui` mean? appeared first...
Chromium spelling and grammar features
29.6.2021
Delan Azabani digs into the (hopefully) coming soon ::spelling-error and ::grammar-error pseudo selectors in CSS. Design control is always nice. Hey, if we can style scrollbars and style selected text, why not this?
The squiggly lines that indicate...
System *Things
29.6.2021
I think we’re all largely aware of named colors in CSS:
color: OldLace;
background: rebeccapurple;
I guess you’d just call those “named colors” in CSS.
Those aren’t the only kind of named colors there are though. Some of them …
The post System *Things appeared...
Bitcoin Hashrate Drops 35% Intraday — Mining Difficulty to Drop by 23%
28.6.2021
Bitcoin’s hashrate experienced a large drop of almost 35% in a single day. The hashrate plummeted from 108 exahash per second (EH/s) yesterday to today’s 69 EH/s, seeing one of the sharpest declines in the network. This might be a consequence of the situation going on with miners...
Chapter 9: Community
24.6.2021
In April of 2009, Yahoo! shut down GeoCities. Practically overnight, the once beloved service had its signup page replaced with a vague message announcing its closure.
We have decided to discontinue the process of allowing new customers to sign up
…
The post Chapter 9: Community appeared...
Aussie state government blockchain platform may prevent a tower block inferno
24.6.2021
The platform will track the material resources, subcontractors and construction process used to build Aussie homes
Bad call? Bitfinex bears closed a block of Bitcoin shorts before the drop below $32K
22.6.2021
Bitcoin short positions at Bitfinex soared as BTC price dropped below $40,000, so why did the majority of them close before the largest part of the correction?
Three Ethereum Testnets Are Transitioning to the Highly Anticipated London Upgrade
22.6.2021
According to a blog post on the Ethereum Foundation’s website, three Ethereum testnets leveraging the London hard fork will go live during the next few weeks. Ethereum core developer Tim Beiko explained last Friday that the “upgrade will first go live on Ropsten, at block 10499401...
Global Nonprofit Operation Smile Opens Its Doors to Crypto Donations
20.6.2021
The global nonprofit Operation Smile has announced the organization is now accepting crypto assets like bitcoin and dogecoin. The nonprofit is a surgical volunteer-based outfit that helps people with cleft conditions improve their lifestyles. Surgical Volunteer-Based Nonprofit Operation Smile...
Danske Bank Takes Position on Cryptocurrencies, Will Not Interfere With Crypto Trading
19.6.2021
Danske Bank will not block credit cards used in crypto trading, according to its newly announced position on cryptocurrencies. The Danish bank would also accept deposits related to crypto investments, although it follows a cautious approach towards decentralized digital assets. Denmark’s...
Useful and Useless Code Comments
16.6.2021
Jim Nielsen:
If somebody says a comment isn’t adding any value, I would ask: to whom?
Personally, I’ve never liked the advice that writing obvious comments is bad practice—probably because I write obvious comments all the time.
Jim showed …
The post Useful and Useless Code Comments...
Media Queries in Times of @container
15.6.2021
Max Böck took me up on my challenge to look through a codebase and see how many of the @media queries could ultimately become @container queries.
I took the bait and had a look at some of my projects –
…
The post Media Queries in Times of @container appeared first on CSS-Tricks.
You...