Stylus - Links
Wikipedia - Stylus (stylesheet language).
Stylus Expressive, dynamic, and robust CSS.
CSS Portal - CSS to Stylus Converter.
Stylus - Voorbeelden
layout stylus_one
layout stylus_two
layout stylus_three
Note. The layout in the stylesheet description below is also in Less.
Stylus - Voorbeeld stylesheet
Conversie van CSS naar Stylus:
@media print {
body {
display: none;
}
}
body {
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
-webkit-user-select: none;
user-select: none;
}
a {
outline: 0px !important;
-webkit-appearance: none;
}
==>
@media print
body
display none
body
-moz-user-select none
-ms-user-select none
-o-user-select none
-webkit-user-select none
user-select none
a
outline 0px !important
-webkit-appearance none
Platform conversie: https://www.cssportal.com/css-to-stylus/