Sass (stylesheet language)
![]() |
|
Appeared in | 2007 |
---|---|
Designed by | Hampton Catlin |
Developer | Nathan Weizenbaum, Chris Eppstein |
Stable release | 3.1.16 (April 20, 2012 | )
Typing discipline | dynamic |
Major implementations | Ruby (programming language) |
Influenced by | CSS, Yaml, Haml |
Influenced | LESS, Stylus |
OS | Cross-platform |
License | MIT License |
Usual filename extensions | .sass, .scss |
Website | sass-lang.com |
Sass (Syntactically Awesome Stylesheets) is a stylesheet language initially designed by Hampton Catlin and developed by Nathan Weizenbaum.[1][2] After its initial versions, Nathan Weizenbaum and Chris Eppstein have continued to extend Sass with SassScript, a simple scripting language used in Sass files.
Sass is a Cascading Style Sheets (CSS) metalanguage. It is a scripting language that is interpreted into CSS. SassScript is the scripting language itself. Sass consists of two syntaxes. The original syntax, called "the indented syntax" uses a syntax similar to Haml.[3] It uses indentation to separate code blocks and newline characters to separate rules. The newer syntax, "SCSS" uses block formatting like that of CSS. It uses braces to denote code blocks and semicolons to separate lines within a block. The indented syntax and SCSS files are traditionally given the extensions .sass and .scss respectively.
CSS3 consists of a series of selectors and pseudo-selectors that group rules that apply to them. Sass (in the larger context of both syntaxes) extends CSS by providing several mechanisms available in more traditional programming languages, particularly object-oriented languages, but that are not available to CSS3 itself. When SassScript is interpreted, it creates blocks of CSS rules for various selectors as defined by the Sass file. The Sass interpreter translates SassScript into CSS. Alternately, Sass can monitor the .sass or .scss file and translate it to an output .css file whenever the .sass or .scss file is saved.[4] Sass is simply syntactic sugar for CSS.
The official implementation of Sass is open-source and coded in Ruby, however, other implementations exist, including one in PHP for Drupal[5]. The indented syntax is a metalanguage. SCSS is a nested metalanguage, as valid CSS is valid SCSS with the same semantics. Sass supports integration with the Firefox extension Firebug.[6]
SassScript provides the following mechanisms: variables, nesting, mixins, and selector inheritance.[3]
Contents |
Variables
Sass allows variables to be defined. Variables begin with a dollar sign ($). Variable assignment is done with a colon (:).[6]
SassScript supports four data types:[6]
Variables can be arguments to or results from one of several available functions.[7] During translation, the values of the variables are inserted into the output CSS document.[3]
In SCSS style
$blue: #3bbfce; $margin: 16px; .content-navigation { border-color: $blue; color: darken($blue, 9%); } .border { padding: $margin / 2; margin: $margin / 2; border-color: $blue; }
Or SASS style
$blue: #3bbfce $margin: 16px .content-navigation border-color: $blue color: darken($blue, 9%) .border padding: $margin/2 margin: $margin/2 border-color: $blue
Would compile to:
.content-navigation { border-color: #3bbfce; color: #2b9eab; } .border { padding: 8px; margin: 8px; border-color: #3bbfce; }
Nesting
CSS does support logical nesting, but the code blocks themselves are not nested. Sass allows the nested code to be inserted within each other.[3]
table.hl { margin: 2em 0; td.ln { text-align: right; } } li { font: { family: serif; weight: bold; size: 1.2em; } }
Would compile to:
table.hl { margin: 2em 0; } table.hl td.ln { text-align: right; } li { font-family: serif; font-weight: bold; font-size: 1.2em; }
More complicated types of nesting including namespace nesting and parent references are discussed in the Sass documentation.[6]
Mixins
CSS does not support mixins. Any repeated code must be repeated in each location. A mixin is a section of code that contains any valid Sass code. Whenever a mixin is called, the result of translating the mixin is inserted at the calling location. Mixins allow for efficient and clean code repetitions, as well as easy alteration of code.[3]
@mixin table-base { th { text-align: center; font-weight: bold; } td, th {padding: 2px} } #data { @include table-base; }
Would compile to:
#data th { text-align: center; font-weight: bold; } #data td, #data th { padding: 2px; }
Arguments
Mixins also support arguments.[3]
@mixin left($dist) { float: left; margin-left: $dist; } #data { @include left(10px); }
Would compile to:
#data { float: left; margin-left: 10px; }
In combination
@mixin table-base { th { text-align: center; font-weight: bold; } td, th {padding: 2px} } @mixin left($dist) { float: left; margin-left: $dist; } #data { @include left(10px); @include table-base; }
Would compile to:
#data { float: left; margin-left: 10px; } #data th { text-align: center; font-weight: bold; } #data td, #data th { padding: 2px; }
Selector inheritance
While CSS3 supports the Document Object Model (DOM) hierarchy, it does not allow selector inheritance. Inheritance is done by inserting a line inside of a code block that uses the @extend keyword and references another selector. The extended selector's attributes are applied to the calling selector.[3]
.error { border: 1px #f00; background: #fdd; } .error.intrusion { font-size: 1.3em; font-weight: bold; } .badError { @extend .error; border-width: 3px; }
Would compile to:
.error, .badError { border: 1px #f00; background: #fdd; } .error.intrusion, .badError.intrusion { font-size: 1.3em; font-weight: bold; } .badError { border-width: 3px; }
Sass supports multiple inheritance.[6]
IDE integration
IDE | Software | website |
---|---|---|
Microsoft Visual Studio | Mindscape | http://www.mindscapehq.com/products/web-workbench |
Eclipse | ||
JetBrains RubyMine | ||
NetBeans | http://plugins.netbeans.org/plugin/34929/scss-support |
References
- ^ Sass - Syntactically Awesome Stylesheets About
- ^ "Nathan Weizenbaum's blog". http://nex-3.com/.
- ^ a b c d e f g Sass - Syntactically Awesome Stylesheets
- ^ Sass - Syntactically Awesome Stylesheets Tutorial
- ^ http://drupal.org/project/sass
- ^ a b c d e Sass (Syntactically Awesome StyleSheets) SASS_REFERENCE
- ^ Module: Sass::Script::Functions Sass Functions
External links
- Official Sass website
- Haml/Sass source code repository (Git)
- Haml/Sass Google Group
- pyScss, a Python Scss library and client
|