项目作者: hritik5102

项目描述 :
Static sass website :
高级语言: CSS
项目地址: git://github.com/hritik5102/Sass-website.git
创建时间: 2020-03-01T21:31:42Z
项目社区:https://github.com/hritik5102/Sass-website

开源协议:

下载


Sass-website

SASS : Synatically awesome stylesheet

  • CSS PreProcessor / Extension
  • Use the feature that do not exist in CSS
  • SASS file are compiled to regular CSS

Features of scss :

  1. Provide a variable declaration
  2. Nesting property
  3. Modules
  4. Mixing and function
  5. Inheritance
  6. Operator
  7. Conditional property

Get free SVG from Here

Pre-requisite :

  1. $ npm install -g scss

Two ways to do run your sass :

  1. 1. $ sass --watch scss/style.css css/style.css
  1. Install live sass extension from vs-code and add configuration in settings.json
    1. "liveSassCompile.settings.formats":[
    2. // This is Default.
    3. {
    4. "format": "expanded",
    5. "savePath": "/css"
    6. }
    7. ],
    8. "liveSassCompile.settings.generateMap":false,
  • When you create _filename.scss it will not compiled to .css because it’s partial file so,
    you can store your define variable in that file and import that file any where you required .
  • we can access or shared property of one scss file to another .

Theme :

  1. $primary-color: #ffffff;

Rendered ui



  1. $primary-color: #0e6cff;

Rendered ui