I got tired of updating chart screenshots in READMEs by hand.
Either the numbers were stale, or I’d regenerate an image, commit it, and forget the next week. For docs and GitHub READMEs I don’t need a full chart library on the page — I need a vector...
CSS naming hasn't evolved.
Everything else in development has — JavaScript, Python, APIs — but CSS is still stuck in:
background-color: #111;
border-radius: 8px;
Hyphens. Everywhere.
Meanwhile, the rest of your stack uses:
camelCase JavaScript
...
One thing about FSCSS is that you can define your own functions… inside your styles. Here’s a simple example of how that works.
Custom randint Function
@define randintarray{
@random@usearray
}
What this function does:
Takes an array as an arg...
FSCSS Figured Shorthand Cascading Style Sheet is a styling approach designed to simplify CSS by using shorthand techniques. It allows developers to write more concise and efficient styles, reducing redundancy and improving readability.
Key Features ...