mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
Stylus translation into en
This commit is contained in:
parent
9a75f7fe9f
commit
5ce3d12e39
@ -4,6 +4,225 @@ filename: learnStylus.styl
|
||||
contributors:
|
||||
- ["Salomão Neto", "https://github.com/salomaosnff"]
|
||||
- ["Isaac Henrique", "https://github.com/Isaachi1"]
|
||||
translators:
|
||||
- ["Divay Prakash", "https://github.com/divayprakash"]
|
||||
---
|
||||
|
||||
TODO
|
||||
Stylus is a dynamic stylesheet preprocessor language that is compiled into CSS. It aims to add functionality to CSS without breaking compatibility across web browsers.
|
||||
It does this using variables, nesting, mixins, functions and more.
|
||||
|
||||
Stylus syntax is very flexible. You can use standard CSS syntax and leave the semicolon (;), colon (:) and even the ({) and (}) optional, making your code even more readable.
|
||||
|
||||
Stylus does not provide new style options, but gives functionality that lets you make your CSS much more dynamic.
|
||||
|
||||
```scss
|
||||
|
||||
/* Code style
|
||||
==============================*/
|
||||
|
||||
/* Keys, semicolon, and colon are optional in Stylus. */
|
||||
|
||||
body {
|
||||
background: #000;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #000
|
||||
}
|
||||
|
||||
body {
|
||||
background #000
|
||||
}
|
||||
|
||||
body
|
||||
background #000
|
||||
|
||||
body
|
||||
background: #000;
|
||||
|
||||
body
|
||||
background: #000
|
||||
|
||||
|
||||
// Single-line comments are removed when Stylus is compiled into CSS.
|
||||
|
||||
/* Multi-line comments are preserved. */
|
||||
|
||||
|
||||
/* Selectors
|
||||
==============================*/
|
||||
|
||||
/* Selecting elements within another element */
|
||||
body {
|
||||
background: #000000;
|
||||
h1 {
|
||||
color: #FF0000;
|
||||
}
|
||||
}
|
||||
|
||||
/* Or if you prefer... */
|
||||
body
|
||||
background #000000
|
||||
h1
|
||||
color #FF0000
|
||||
|
||||
|
||||
/* Obtendo a referência do elemento pai
|
||||
==============================*/
|
||||
a {
|
||||
color: #0088dd;
|
||||
&:hover {
|
||||
color: #DD8800;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*Variáveis
|
||||
==============================*/
|
||||
|
||||
|
||||
/*
|
||||
É possível armazenar um valor CSS (tais como a cor) de uma variável.
|
||||
Embora seja opcional, é recomendado adicionar $ antes de um nome de variável
|
||||
para que você possa distinguir uma variável de outro valor CSS.
|
||||
*/
|
||||
|
||||
$primary-color = #A3A4FF
|
||||
$secondary-color = #51527F
|
||||
$body-font = 'Roboto', sans-serif
|
||||
|
||||
/* Você pode usar as variáveis em toda a sua folha de estilo.
|
||||
Agora, se você quer mudar a cor, você só tem que fazer a mudança uma vez. */
|
||||
|
||||
body
|
||||
background-color $primary-color
|
||||
color $secondary-color
|
||||
font-family $body-font
|
||||
|
||||
/* Quando compilar ficaria assim: */
|
||||
body {
|
||||
background-color: #A3A4FF;
|
||||
color: #51527F;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
/ *
|
||||
Este é muito mais fácil de manter do que ter de mudar a cor
|
||||
cada vez que aparece em toda a sua folha de estilo.
|
||||
* /
|
||||
|
||||
|
||||
|
||||
/*Mixins
|
||||
==============================*/
|
||||
|
||||
/* Se você achar que você está escrevendo o mesmo código para mais de um
|
||||
elemento, você pode querer armazenar esse código em um mixin.
|
||||
|
||||
center()
|
||||
display block
|
||||
margin-left auto
|
||||
margin-right auto
|
||||
left 0
|
||||
right 0
|
||||
|
||||
/* Utilizando um mixin */
|
||||
body {
|
||||
center()
|
||||
background-color: $primary-color
|
||||
}
|
||||
|
||||
/* Apoś compilar ficaria assim: */
|
||||
div {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: #A3A4FF;
|
||||
}
|
||||
|
||||
/* Você pode usar mixins para criar uma propriedade estenográfica. */
|
||||
|
||||
size($width, $height)
|
||||
width $width
|
||||
height $height
|
||||
|
||||
.rectangle
|
||||
size(100px, 60px)
|
||||
|
||||
.square
|
||||
size(40px, 40px)
|
||||
|
||||
/* Você pode usar um mixin como uma propriedade CSS. */
|
||||
circle($ratio)
|
||||
width $ratio * 2
|
||||
height $ratio * 2
|
||||
border-radius $ratio
|
||||
|
||||
.ball
|
||||
circle 25px
|
||||
|
||||
|
||||
/* Interpolação
|
||||
==============================*/
|
||||
|
||||
vendor(prop, args)
|
||||
-webkit-{prop} args
|
||||
-moz-{prop} args
|
||||
{prop} args
|
||||
|
||||
border-radius()
|
||||
vendor('border-radius', arguments)
|
||||
|
||||
box-shadow()
|
||||
vendor('box-shadow', arguments)
|
||||
|
||||
button
|
||||
border-radius 1px 2px / 3px 4px
|
||||
|
||||
/* Funções
|
||||
==============================*/
|
||||
|
||||
/* Funções no Stylus permitem fazer uma variedade de tarefas, como por exemplo, menipular algum dado. */
|
||||
|
||||
body {
|
||||
background darken(#0088DD, 50%) // Escurece a cor #0088DD em 50%
|
||||
}
|
||||
|
||||
/** Criando sua própria função */
|
||||
somar(a, b)
|
||||
a + b
|
||||
|
||||
body
|
||||
padding somar(10px, 5)
|
||||
|
||||
/* Condições
|
||||
==============================*/
|
||||
comparar(a, b)
|
||||
if a > b
|
||||
maior
|
||||
else if a < b
|
||||
menor
|
||||
else
|
||||
igual
|
||||
|
||||
comparar(5, 2) // => maior
|
||||
comparar(1, 5) // => menor
|
||||
comparar(10, 10) // => igual
|
||||
|
||||
/* Iterações
|
||||
==============================*/
|
||||
|
||||
/**
|
||||
Sintaxe de laço de repetição for:
|
||||
for <val-name> [, <key-name>] in <expression>
|
||||
**/
|
||||
|
||||
for $item in (1..2) /* Repete o bloco 12 vezes */
|
||||
.col-{$item}
|
||||
width ($item / 12) * 100% /* Calcula a largula pelo número da coluna*
|
||||
|
||||
```
|
||||
|
||||
Agora que você conhece um pouco sobre esse poderoso pré-processador de CSS, você está pronto para criar folhas de estilos mais dinâmicas. Para aprofundar seus conhecimentos visite a documentação oficial do stylus em http://stylus-lang.com.
|
||||
|
Loading…
Reference in New Issue
Block a user