Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
shell-csslib
Advanced tools
A powerful, lightweight, unopinionated, responsive friendly CSS library that provides a solid foundation for any UI build. Developed at Campaign Monitor
A powerful, lightweight, mostly unopinionated, responsive friendly CSS library that provides a solid foundation for any UI build.
Built with :blue_heart: by Campaign Monitor, which is why we say mostly unopinionated :smile:.
A docs website is in the works, in the meantime Shell's code is heavily documented.
If you would like to suggest any new additions or improvements to Shell, log any issues or bugs, or just ask a question, please open a new GitHub issue and label it appropriately. If you would like to contribute see CONTRIBUTING.md.
npm install shell-csslib --save-dev
There are other install options e.g. git clone
, however, it's advised to use a package manager like NPM to handle your third-party dependencies :+1:.
Once the shell-csslib
NPM module is installed your project will look like this:
project root
└── node_modules
├── shell-csslib
Your master Sass stylesheet—we typically call ours style.scss
—should be setup like this:
@charset 'UTF-8';
/* ============================================================================
MASTER STYLESHEET
========================================================================= */
/**
* CONTENTS:
*
* 1. Your settings
* 2. Shell CSS library
* 3. Your styles
*
* N.B. the above order of sections #1 and #2 must be maintained otherwise Sass
* will not compile!
*/
/* 1. Your settings incl. any Shell setting overrides
========================================================================= */
@import 'settings';
/* 2. Shell CSS library
========================================================================= */
/**
* N.B. do not change the order of these partial imports!
*/
@import '~shell-csslib/src/settings';
@import '~shell-csslib/src/mixins-functions';
@import '~shell-csslib/src/normalise-reset';
@import '~shell-csslib/src/base';
@import '~shell-csslib/src/container';
@import '~shell-csslib/src/grid';
@import '~shell-csslib/src/helpers';
/* 3. Your styles
========================================================================= */
// Away you go!
Shell won't work without _settings.scss
and _mixins-functions.scss
, the rest are optional.
project root
├── css
│ ├── components
│ ├── vendor
│ ├── _settings.scss
│ └── style.scss
└── node_modules
├── shell-csslib
PostCSS plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use.
We advise setting up Autoprefixer as part of your build process.
Stylelint is used for linting and Shell follows these CSS conventions applied by stylelint.config.js.
Eventually linting will be setup as part of CI, see: #19.
For now, you can go to your Terminal, cd
into the root of Shell, and run:
gulp lint
This will lint all of the .scss
files in:
src/**/*.scss
docs/src/**/*.scss
test/src/**/*.scss
Shell is maintained under the Semantic Versioning guidelines. We'll do our best to adhere to those guidelines and strive to maintain backwards compatibility.
See the CHANGELOG.
Copyright 2016 Campaign Monitor.
FAQs
A powerful, lightweight, unopinionated, responsive friendly CSS library that provides a solid foundation for any UI build. Developed at Campaign Monitor
The npm package shell-csslib receives a total of 7 weekly downloads. As such, shell-csslib popularity was classified as not popular.
We found that shell-csslib 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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.