Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
tachyons-background-size
Advanced tools
Background size CSS module for Tachyons
279 | 8 | 8 |
---|---|---|
bytes | selectors | declarations |
npm install --save-dev tachyons-background-size
Learn more about using css installed with npm:
http:
git clone https://github.com/tachyons-css/tachyons-background-size
ssh:
git clone git@github.com:tachyons-css/tachyons-background-size.git
Import the css module
@import "tachyons-background-size";
Then process the CSS using the tachyons-cli
$ npm i -g tachyons-cli
$ tachyons path/to/css-file.css > dist/t.css
The easiest and most simple way to use the css is to use the cdn hosted version. Include it in the head of your html with:
<link rel="stylesheet" href="http://npmcdn.com/tachyons-background-size@5.0.0/css/tachyons-background-size.min.css" />
The built CSS is located in the css
directory. It contains an unminified and minified version.
You can either cut and paste that css or link to it directly in your html.
<link rel="stylesheet" href="path/to/module/css/tachyons-background-size">
The source CSS files can be found in the src
directory.
Running $ npm start
will process the source CSS and place the built CSS in the css
directory.
/*
BACKGROUND SIZE
Media Query Extensions:
-ns = not-small
-m = medium
-l = large
*/
/*
Often used in combination with background image set as an inline style
on an html element.
*/
.cover { background-size: cover; }
.contain { background-size: contain; }
@media screen and (min-width: 30em) {
.cover-ns { background-size: cover; }
.contain-ns { background-size: contain; }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.cover-m { background-size: cover; }
.contain-m { background-size: contain; }
}
@media screen and (min-width: 60em) {
.cover-l { background-size: cover; }
.contain-l { background-size: contain; }
}
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)ISC
FAQs
Background size CSS module for Tachyons
The npm package tachyons-background-size receives a total of 4 weekly downloads. As such, tachyons-background-size popularity was classified as not popular.
We found that tachyons-background-size demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.