Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
elm-stylesheets
Advanced tools
Isn't it a pain when you want to rename a CSS class or ID, but can't be sure that the rename wouldn't break things?
Or when it turns out the reason something wasn't displaying as expected was that you had a typo in the class name?
How about when you load multiple stylesheets onto the same page and some of the
class names overlap?
Wouldn't it be sweet if those problems went away?
elm-css
is a CSS preprocessor where you write Elm code and get out .css
stylesheets.
It lets you:
Here's an example:
dreamwriter =
stylesheet { name = "dreamwriter" }
$ html
~ width 100 pct
~ height 100 pct
~ boxSizing borderBox
~ padding 0 px
~ margin 0 px
$ body
~ minWidth 1280 px
~ overflowX auto
>$ div
~ width 100 pct
~ height 100 pct
. Hidden
! display none
# Page
~ width 100 pct
~ height 100 pct
~ boxSizing borderBox
~ margin 0 px
~ padding 8 px
~ backgroundColor pageBackground
~ color pageDefaultText
The above is vanilla Elm code. Hidden
and Page
are backed by union types, so
if they get out of sync with your view code, you'll get a nice build error.
$
, #
, ~
, and the like are custom operators.
The above elm-css
stylesheet compiles to the following .css file:
html {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 0px;
margin: 0px;
}
body {
min-width: 1280px;
overflow-x: auto;
}
body > div {
width: 100%;
height: 100%;
}
.dreamwriter_Hidden {
display: none !important;
}
#Page {
width: 100%;
height: 100%;
box-sizing: border-box;
margin: 0px;
padding: 8px;
background-color: rgb(100, 90, 128);
color: rgb(40, 35, 76);
}
To get your environment working, just install the dependencies and head to http://localhost:8000/app/index.html.
$ elm-package install
FAQs
Elm-based CSS Preprocessor
The npm package elm-stylesheets receives a total of 0 weekly downloads. As such, elm-stylesheets popularity was classified as not popular.
We found that elm-stylesheets demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.