— a collection of Sass utilities to ease and improve our implementations of common style-code patterns.
For a prolonged introduction to Scut, read "Introducing Scut" on CSS-Tricks.
If you have any questions about Sass, they are answered in Sass's fine documentation.
Scut was originally developed and owned by David Clark (@DavidTheClark). On January 21, 2022, David decided to transfer ownership of this GitHub repository to RamseyInHouse (@RamseyInHouse) where it will be maintained and updated for the foreseeable future.
Please visit the complete documentation here:
http://ramseyinhouse.github.io/scut/
Usage should be explained there, as is installation. But I'll explain installation here, too, for your convenience. You can install Scut by:
bower install scut --save-dev
.gem install scut
) and then performing the usual Compass require
and @import
business.npm install --save-dev scut
@import 'scut'
Please do! Scut is simple; contributing should be easy. So give it a go.
If you have any questions, if anything about this document is unclear or inaccurate, if you can't figure out what to do, please file an issue or contact me.
Scut utilities should help users avoid repetition, organize code, and re-use code.
Scut utilities should tackle patterns that suffer from one or more of the following problems:
The utility's goal is to fix those problems in a way that maximizies reusability. Here are some principles to keep in mind to maximize that reusability:
scut-
prefix everwhere).I go into detail about all these ideas in that CSS-Tricks article.
The utilities are in src/
, organized by category. The SCSS stylesheets in src/
ultimately concatenate into dist/_scut.scss
, which is what users @import
into their own Sass.
Please have a look at existing SCSS files within src/
and try to match their style.
(Or, if you think there's a better way to do things, please file an issue.)
Here are some guidelines to explain how I've been writing:
//
comment, not a block comment) naming the utility and listing any dependencies. Limit dependencies please. In the end, that top comment should also contain the URL of the utility's documentation. For example:// SCUT PIXELS TO EMS
// http://ramseyinhouse.github.io/scut/#pixels-to-ems
// Depends on `scut-strip-unit`.
@mixin scut-color-swap (
$inactive,
$active,
$duration: 0,
$bg: false
) {
// mixin content
}
The method I recommend for experimentation and testing is to use Codepen, either starting your own pen from scratch or forking the Scut Playground (which imports the latest version of Scut).
(I have deleted the "tests" directory and tasks from the repository in favor of relying on Codepen.)
Documentation is compiled using Assemble. The source files are located in docs/content
and docs/dev
. You'll need to bower install
to get Normalize.