Skip to content

Commit

Permalink
translated Sass
Browse files Browse the repository at this point in the history
  • Loading branch information
Starkov Vladimir committed Oct 24, 2012
1 parent 9e7cc42 commit c3f9969
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions README Russian.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,17 +496,14 @@ them in CSS _ever_.

## Препроцессоры

Sass is my preprocessor of choice. **Use it wisely.** Use Sass to make your CSS
more powerful but avoid nesting like the plague! Nest only when it would
actually be necessary in vanilla CSS, e.g.
Sass — мой выбор среди препроцессоров. **Используйте его с умом** (TODO: Use Sass to make your CSS more powerful but avoid nesting like the plague! Nest only when it would actually be necessary in vanilla CSS, e.g.)

.header{}
.header .site-nav{}
.header .site-nav li{}
.header .site-nav li a{}

Would be wholly unnecessary in normal CSS, so the following would be **bad**
Sass:
Что полностью избыточно в обычном CSS, следовательно следущий Sass код достаточно плох:

.header{
.site-nav{
Expand All @@ -516,7 +513,7 @@ Sass:
}
}

If you were to Sass this up you’d write it as:
Иcпользуя Sass пишите это так:

.header{}
.site-nav{
Expand Down

0 comments on commit c3f9969

Please sign in to comment.