NoRedInk/style-elements

A different approach to creating and managing styles.


Install
elm-package install NoRedInk/style-elements 2.0.0

Documentation

Hi!

Unless you know you need the fix in this package, please prefer mdgriffith/style-elements. This was just published to fix a bug.


The Style Elements Library!

Join us on the #style-elements channel in the Elm Slack!

The Style Elements library is a new set of primitives for working with layout and style in Elm.

The most common goal when working with your view is usually to set or to adjust your layout.

HTML and CSS make this difficult because there's no central place that represents your layout.

You're generally forced to bounce back and forth between multiple definitions in multiple files in order to adjust layout, even though it's probably the most common thing you'll do.

Separating Layout and Style

The Style Elements library makes layout a first class idea, which makes working with style and layout a breeze.

It also makes refactoring your style feel similarly invincible as refactoring in Elm!

The main idea is that layout should live in your view, and your stylesheet should deal with all properties except those relating to layout, position, sizing, and spacing.

The Element module contains all the components that go in your view.

The Style module is the base for creating your stylesheet.