
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
@master/css
Advanced tools
Let's have a quick overview of the groundbreaking features of Master CSS:
class="..."
.To learn more, check out the documentation.
A brief introduction starts by giving you an understanding of markup-driven CSS.
π Traditional
<style>
.home-section {
background-color: blue;
padding: 2rem;
text-align: center;
}
.home-section:hover {
background-color: red;
}
@media (min-width: 1024px) {
.home-section {
padding: 3rem;
}
}
</style>
<section class="home-section">...</section>
π€© Now, refactor it with a whole new CSS language to make it easier. β 86% code
<section class="bg:blue bg:red:hover p:32 p:48@md text:center">...</section>
To learn more, check out the Why Master CSS documentation.
This is a quick start guide, check out the full setup guide to integrate with your build tools and frameworks.
npm install @master/css
import '@master/css';
or use a CDN
<script src="https://cdn.master.co/css"></script>
Now, start styling HTML with Master CSS. π
<h1 class="font:40 font:heavy italic m:50 text:center">Hello World</h1>
To learn more, check out the Syntax tutorial documentation.
Some of our core concepts and designs are inspired by these giants.
FAQs
A Virtual CSS language with enhanced syntax. ( ~13KB )
The npm package @master/css receives a total of 1,124 weekly downloads. As such, @master/css popularity was classified as popular.
We found that @master/css demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.