├── Apostila ├── extend.md ├── mixins.md ├── functions.md ├── iteration.md ├── operators.md ├── variables.md ├── conditionals.md ├── interpolation.md ├── media-queries.md ├── placeholders.md ├── pseudo-elements.md ├── selectors.md └── README.md ├── .gitignore ├── README.md └── LICENSE /Apostila/extend.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/mixins.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/functions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/iteration.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/operators.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/variables.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/conditionals.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/interpolation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/media-queries.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/placeholders.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/pseudo-elements.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apostila/selectors.md: -------------------------------------------------------------------------------- 1 | selectors.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Compiled binary addons (http://nodejs.org/api/addons.html) 24 | build/Release 25 | 26 | # Dependency directory 27 | node_modules 28 | 29 | # Optional npm cache directory 30 | .npm 31 | 32 | # Optional REPL history 33 | .node_repl_history 34 | -------------------------------------------------------------------------------- /Apostila/README.md: -------------------------------------------------------------------------------- 1 | # Apostila 2 | 3 | ## selectors 4 | 5 | [Conteúdo de selectors](./selectors.md) 6 | 7 | ## pseudo-elements 8 | 9 | [Conteúdo de selectors](./pseudo-elements.md) 10 | 11 | ## variables 12 | 13 | [Conteúdo de selectors](./variables.md) 14 | 15 | ## interpolation 16 | 17 | [Conteúdo de selectors](./interpolation.md) 18 | 19 | ## operators 20 | 21 | [Conteúdo de selectors](./operators.md) 22 | 23 | ## extend 24 | 25 | [Conteúdo de selectors](./extend.md) 26 | 27 | ## mixins 28 | 29 | [Conteúdo de selectors](./mixins.md) 30 | 31 | ## functions 32 | 33 | [Conteúdo de selectors](./functions.md) 34 | 35 | ## placeholders 36 | 37 | [Conteúdo de selectors](./placeholders.md) 38 | 39 | ## conditionals 40 | 41 | [Conteúdo de selectors](./conditionals.md) 42 | 43 | ## media queries 44 | 45 | [Conteúdo de selectors](./media-queries.md) 46 | 47 | ## iteration 48 | 49 | [Conteúdo de selectors](./iteration.md) 50 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CSS-processadores 2 | Cursos sobre pre/post processors de CSS 3 | 4 | ## Ementa básica 5 | 6 | - selectors 7 | - pseudo-elementos 8 | - variables 9 | - interpolation 10 | - operators 11 | - extend 12 | - mixins 13 | - functions 14 | - placeholders 15 | - conditionals 16 | - media queries 17 | - iteration 18 | 19 | ### Less 20 | 21 | - Prof.: [Caio Norder](https://github.com/caionorder) 22 | - Repositório: [https://github.com/Webschool-io/Curso-CSS-Less](https://github.com/Webschool-io/Curso-CSS-Less) 23 | 24 | 25 | ### Sass 26 | 27 | - Prof.: [Amanda Vilela](https://github.com/amandavilela) 28 | - Repositório: [https://github.com/Webschool-io/Curso-CSS-SASS](https://github.com/Webschool-io/Curso-CSS-SASS) 29 | 30 | ### Stylus 31 | 32 | - Prof.: [Marcos Felipe](https://github.com/omarkdev/) 33 | - Repositório: [https://github.com/Webschool-io/Curso-CSS-Stylus](https://github.com/Webschool-io/Curso-CSS-Stylus) 34 | 35 | 36 | ### PostCSS 37 | 38 | - Prof.: [Fernando Fleury](https://github.com/fernandofleury) 39 | - Repositório: [https://github.com/Webschool-io/Curso-PostCSS](https://github.com/Webschool-io/Curso-PostCSS) 40 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 WebSchool.io 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------