Questions tagged as 'sass'

1
answer

What is the difference between SASS and SCSS

I've been reading about SASS for quite some time and it provides a powerful set of functionality for CSS like variables, mixins, and the like. And at the same time I see the term SCSS. What's the difference between the two? Are they the same...
asked by 15.03.2015 / 23:34
1
answer

What is the difference between Less and Sass?

What is the difference of each and advantages and disadvantages?     
asked by 03.09.2014 / 03:16
1
answer

What is SASS technology?

Nowadays the dynamism in producing styles for a page or set of pages is essential for the developer. And CSS sometimes becomes somewhat complex with complicated, repetitive, and highly mathematical selectors. A technology able to overcome thi...
asked by 10.10.2015 / 02:04
1
answer

No sass what's the difference between a mixin and a placeholder?

Both have the same end result, but I do not know which one is the right one or the one that has the best performance example: %borda($circunferencia: 10px) { -webkit-border-radius: $circunferencia; border-radius: $circunferencia; } @mixi...
asked by 24.03.2017 / 15:37
1
answer

What is the file with the extension ".css.map" when I compile a Sass script?

I'm learning how to use Sass. All learning is going well. The only thing I do not understand is that every time I compile a .scss file, it generates a file with the same name, with the extension .map . What is the purpose of t...
asked by 05.02.2016 / 11:41
1
answer

How to insert new image into project with COMPASS

I have the images I use in my project and I want to add a new image to use on the site, but I can not get the image to be added to the sprites generated by COMPASS     
asked by 24.06.2016 / 19:14
4
answers

How to change the color of a select when selecting an option

I have a select and I am trying to change the color of it when selecting an option (for example I'm changing the color to red ). Using some attributes like hover , focus , active and checked I can even do what I w...
asked by 24.01.2017 / 14:05
1
answer

How to compile Less or Sass automatically?

Personal I have a question regarding Less / Sass. Nowadays I only work with Sublime Text to develop my sites, and I use Sass or Less for styles and I use Koala to compile them. But would you like to know if there is any tool that will allow m...
asked by 21.11.2017 / 13:25
2
answers

Take measurements of an element and play on variables? How to make?

Is there a way (using Sass maybe) to take the measures ( width and / or height ) of already defined elements and store them in variables to use them in calculations of other elements?     
asked by 12.02.2014 / 00:43
2
answers

Calculation of .scss for .sass

I'm creating a dynamic grid system using sass and gulp-sass to compile. I have this code: $col-margin: 15px .row width: 100% max-width: 1170px margin: 0 auto display: flex flex-wrap: wrap // cols =col($cols) width: calc(((100% *...
asked by 20.11.2016 / 23:27