2018-10-24 00:06:39 +02:00
|
|
|
---
|
|
|
|
title: Documentation
|
|
|
|
---
|
|
|
|
|
2018-08-11 01:39:18 +02:00
|
|
|
Sass is a stylesheet language that's compiled to CSS. It allows you to use
|
|
|
|
[variables][], [nested rules][], [mixins][], [functions][], and more, all with a
|
|
|
|
fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized
|
|
|
|
and makes it easy to share design within and across projects.
|
|
|
|
|
2018-10-24 00:06:39 +02:00
|
|
|
[variables]: /documentation/variables
|
2018-08-11 01:39:18 +02:00
|
|
|
[nested rules]: /documentation/style-rules#nesting
|
2018-10-24 00:06:39 +02:00
|
|
|
[mixins]: /documentation/at-rules/mixin
|
|
|
|
[functions]: /documentation/functions
|
2018-08-11 01:39:18 +02:00
|
|
|
|
|
|
|
* If you're looking for an introduction to Sass, check out [the
|
|
|
|
tutorial](/guide).
|
|
|
|
|
|
|
|
* If you want to look up a built-in Sass function, look no further than [the
|
|
|
|
function reference](/documentation/functions).
|
|
|
|
|
|
|
|
* If you're calling Sass from JavaScript, you may want the [JS API
|
2018-10-24 00:06:39 +02:00
|
|
|
documentation][js].
|
2018-08-11 01:39:18 +02:00
|
|
|
|
2018-10-24 00:06:39 +02:00
|
|
|
* Or the [Dart API documentation][dart] if you're calling it from Dart.
|
2018-08-11 01:39:18 +02:00
|
|
|
|
2018-10-24 00:06:39 +02:00
|
|
|
* Otherwise, use the table of contents for the language reference!
|
2018-08-11 01:39:18 +02:00
|
|
|
|
2018-10-24 00:06:39 +02:00
|
|
|
[js]: https://github.com/sass/node-sass#usage
|
|
|
|
[dart]: https://pub.dartlang.org/documentation/sass/latest/sass/sass-library.html
|