Selectors
Indentation
Stylus is “pythonic” (i.e. indentation-based). Whitespace is significant, so we substitute {
and }
with an indent, and an outdent as shown below:
body
color white
Which compiles to:
body {
color: #fff;
}
If preferred, you can use colons to separate properties and values:
body
color: white
Rule Sets
Stylus, just like CSS, allows you to define properties for several selectors at once through comma separation.
textarea, input
border 1px solid #eee
The same can be done with a newline:
textarea
input
border 1px solid #eee
Both compile to:
textarea,
input {
border: 1px solid #eee;
}
The only exception to this rule are selectors that look like properties. For example, the following foo bar baz
might be a property or a selector:
foo bar baz
> input
border 1px solid
So for this reason (or simply if preferred), we may trail with a comma:
foo bar baz,
form input,
> a
border 1px solid
Parent Reference
The &
character references the parent selector(s). In the example below our two selectors (textarea
and input
) both alter the color
on the :hover
pseudo selector.
textarea
input
color #A7A7A7
&:hover
color #000
Compiles to:
textarea,
input {
color: #a7a7a7;
}
textarea:hover,
input:hover {
color: #000;
}
Below is an example providing a simple 2px
border for Internet Exploder utilizing the parent reference within a mixin:
box-shadow()
-webkit-box-shadow arguments
-moz-box-shadow arguments
box-shadow arguments
html.ie8 &,
html.ie7 &,
html.ie6 &
border 2px solid arguments[length(arguments) - 1]
body
#login
box-shadow 1px 1px 3px #eee
Yielding:
body #login {
-webkit-box-shadow: 1px 1px 3px #eee;
-moz-box-shadow: 1px 1px 3px #eee;
box-shadow: 1px 1px 3px #eee;
}
html.ie8 body #login,
html.ie7 body #login,
html.ie6 body #login {
border: 2px solid #eee;
}
If you’d need to use the ampersand symbol in a selector without it behaving like a parent reference, you can just escape it:
.foo[title*='\&']
// => .foo[title*='&']
Root Reference
The /
character at the start of the selector is a root reference. It references the root context and this means the selector won’t prepend the parent’s selector to it (unless you would use it with &
). It is helpful when you need to write some styles both to some nested selector and to another one, not in the current scope.
textarea
input
color #A7A7A7
&:hover,
/.is-hovered
color #000
Compiles to:
textarea,
input {
color: #a7a7a7;
}
textarea:hover,
input:hover,
.is-hovered {
color: #000;
}
selector() bif
You can use the built-in selector()
to get the current compiled selector. Could be used inside mixins for checks or other clever things.
.foo
selector()
// => '.foo'
.foo
&:hover
selector()
// '.foo:hover'
This bif could also accept an optional string argument, in this case it would return the compiled selector. Note that it wouldn’t prepend the selector of the current scope in case it don’t have any &
symbols.
.foo
selector('.bar')
// => '.bar'
.foo
selector('&:hover')
// '.foo:hover'
Disambiguation
Expressions such as padding - n
could be interpreted both as a subtraction operation, as well as a property with an unary minus. To disambiguate, wrap the expression with parens:
pad(n)
padding (- n)
body
pad(5px)
Compiles to:
body {
padding: -5px;
}
However, this is only true in functions (since functions act both as mixins, or calls with return values).
For example, the following is fine (and yields the same results as above):
body
padding -5px
Have weird property values that Stylus can’t process? unquote()
can help you out:
filter unquote('progid:DXImageTransform.Microsoft.BasicImage(rotation=1)')
Yields:
filter progid:DXImageTransform.Microsoft.BasicImage(rotation=1)