index.scss 504 B

1234567891011121314151617181920212223242526272829
  1. // @import url(reset.css);
  2. @import './reset.scss';
  3. $a: red !default;
  4. $b: 30;
  5. $d: purple;
  6. // $ 定义变量 用于存储信息 可以重复使用
  7. // 存储的类型:字符串 数字 颜色 布尔值 null...
  8. /*
  9. 多行注释
  10. .sass .scss
  11. sass格式会省略花括号和分号 所以常用scss存储
  12. */
  13. .box {
  14. width: 200px;
  15. height: 200px;
  16. font-size: $b + px;
  17. border: 3px solid $a;
  18. }
  19. h1 {
  20. $c:blue !global;
  21. color: $c;
  22. }
  23. h2 {
  24. // color: $a !important;
  25. color: $c;
  26. }