1/* Answer to: "sass vs scss" */
2
3/*
4 The basic difference is the syntax. While SASS has a loose syntax
5 with white space and no semicolons, the SCSS resembles more to CSS.
6 SASS stands for Syntactically Awesome StyleSheets. It is an
7 extension of CSS that adds power and elegance to the basic
8 language.
9
10 There's more differences but too much for me! Fortunately, someone
11 else asked the same question over in StackOverflow! Here's a link
12 to their answer:
13 https://stackoverflow.com/questions/5654447/whats-the-difference-between-scss-and-sass
14*/
1 "liveSassCompile.settings.formats": [
2 // This is Default.
3 // {
4 // "format": "expanded",
5 // "extensionName": ".css",
6 // "savePath": "~/../css/"
7 // },
8 // Or you can compress your css
9 {
10 "format": "compressed",
11 "extensionName": ".min.css",
12 "savePath": "~/../css/"
13 }
14 ],
1/* Answer to: "css vs scss" */
2
3/*
4 Sass has two syntaxes. The most commonly used syntax is known as “SCSS”
5 (for “Sassy CSS”), and is a superset of CSS3's syntax. ... Inspired by
6 Haml's terseness, it's intended for people who prefer conciseness over
7 similarity to CSS. Instead of brackets and semicolons, it uses the
8 indentation of lines to specify blocks.
9
10 Check the full answer by clicking on the source but the main thing here is:
11 SCSS is a **SUPERSET** of the CSS3's syntax.
12*/