Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oddbird/susy

Pre-grid responsive layout toolkit for Sass, now deprecated
https://github.com/oddbird/susy

Last synced: about 2 months ago
JSON representation

Pre-grid responsive layout toolkit for Sass, now deprecated

Awesome Lists containing this project

README

        

# Power Tools For The Web [Deprecated]

**Susy is Deprecated. It should no longer be used on new projects, and will no longer be receiving any updates.**

[![npm version](https://badge.fury.io/js/susy.svg)](https://badge.fury.io/js/susy)

Susy is a design-agnostic set of tools
for creating powerful, custom layouts.
We didn't want another grid system
full of rules and restrictions —
we wanted a power tool
for building our own damn systems.
Version Three is trimmed down to it's most basic components —
functions that can be used to build any grid system.

- [Susy Website](http://oddbird.net/susy/) |
[@SassSusy](http://twitter.com/sasssusy/)
- [Susy3 Intro](http://oddbird.net/2017/06/28/susy3) |
[Spread in Susy3](http://oddbird.net/2017/06/13/susy-spread)
- [Susy3 Documentation](http://oddbird.net/susy/docs/)
- [Susy1/Susy2 Documentation](http://susy.readthedocs.io)

## Quotes

> "I like the idea of grids-on-demand,
> rather than a strict framework."

> – Chris Coyier, [CSS Tricks](http://css-tricks.com/build-web-layouts-easily-susy/)

> "Susy and Zendesk have been getting along magically…
> It’s precisely what you need and nothing more."

> — Stephany Varga, [Zendesk](https://medium.com/zendesk-creative-blog/responsive-a-harrowing-meditation-on-the-brutal-realities-of-web-content-organization-in-5-acts-1d33ce25f062)

> "If you’re interested in reading Sass poetry,
> be sure to look at Susy’s source code!"

> — Kitty Giraudel, [SitePoint](http://www.sitepoint.com/my-favorite-sass-tools/)

## Resources

- [OddBird](http://oddbird.net/) | [@OddBird](http://twitter.com/oddbird/)
- [Sites using Susy](http://oddbird.net/susy/sites/)
- [Changelog](https://github.com/oddbird/susy/blob/main/CHANGELOG.md)
- [Guidelines for contributing](https://github.com/oddbird/susy/blob/main/CONTRIBUTING.md)
- [BSD3 License](https://github.com/oddbird/susy/blob/main/LICENSE.txt)

## Third-Party Tools

- [Susy.js](https://github.com/ignota/susy.js) CSS-in-JS port

## Installation

```
npm install susy
```

There are two imports to choose from.
The default `sass/susy` comes with
un-prefixed versions of the core API functions.
If you want Susy to be name-spaced,
import `sass/susy-prefix` instead.

```scss
// un-prefixed functions
@import '/susy/sass/susy';

// susy-prefixed functions
@import '/susy/sass/susy-prefix';
```

### Using [Eyeglass](http://eyeglass.rocks/)

With eyeglass set up,
you can `@import 'susy';`
without providing the npm-modules path.

### Using Webpack

Make sure `sass-loader` is installed:

```bash
npm install sass-loader --save-dev
```

Make sure you have sass-loader enabled in your webpack configuration:

```javascript
// webpack.config.js
module: {
rules: [
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
];
}
```

Start using Susy:

```scss
/* app.scss */
@import '~susy/sass/susy';
```

### Using Gulp

Add a gulp task:

```javascript
// gulpfile.js
gulp.task('sass', function () {
return gulp
.src('scss/*.scss')
.pipe(
sass({
outputStyle: 'compressed',
includePaths: ['node_modules/susy/sass'],
}).on('error', sass.logError),
)
.pipe(gulp.dest('dist/css'));
});
```

Start using Susy:

```scss
/* app.scss */
@import 'susy';
```

### Using Grunt (and Yeoman)

To add Susy to the Sass task,
edit your `Gruntfile.js` at the root level of your project
and look for the Sass-related rules.
Add `require: 'susy'` inside the options object:

```javascript
// Gruntfile.js
sass: {
dist: {
options: {
style: 'expanded',
require: 'susy'
},
files: {
'css/style.css': 'scss/style.scss'
}
}
}
```

Assuming you’ve already installed Susy,
it will now be added to the project
and will not clash with Yeoman's grunt rules.

Start using Susy:

```scss
/* app.scss */
@import 'susy';
```

## Susy vs Su

You may notice that some functions have a `susy-` prefix,
while others only have `su-`.
This helps distinguish between the two distinct layers:

- The core grid-math layer is called **Su**,
and is made up of "pure" functions
that expect normalized values.
This is useful if you prefer argument-syntax to shorthand syntax,
or if you are building your own Susy mixins.
- The upper **Susy** layer provides syntax-sugar –
global defaults, shorthand-parsing, normalization,
and a smaller set of common-use functions
that call on the core math as necessary.
This is the primary API for most users.

---

### Sponsor OddBird's OSS Work

At OddBird, we love contributing to the languages & tools developers rely on.
We're currently working on polyfills for new Popover & Anchor Positioning
functionality, as well as CSS specifications for functions, mixins, and
responsive typography. Help us keep this work sustainable and centered on your
needs as a developer! We display sponsor logos and avatars on our
[website](https://www.oddbird.net/susy/#open-source-sponsors).

[Sponsor OddBird's OSS Work](https://opencollective.com/oddbird-open-source)