[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-3853":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":16,"stars30d":17,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":18,"rankGlobal":9,"rankLanguage":9,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":20,"hasPages":20,"topics":22,"createdAt":9,"pushedAt":9,"updatedAt":23,"readmeContent":24,"aiSummary":25,"trendingCount":15,"starSnapshotCount":15,"syncStatus":26,"lastSyncTime":27,"discoverSource":28},3853,"sass","sass\u002Fsass","Sass makes CSS fun!","https:\u002F\u002Fsass-lang.com",null,"TypeScript",15374,2230,553,112,0,5,10,45,"MIT License",false,"main",[],"2026-06-12 02:00:55","\u003Ch1>\u003Cimg width=\"200px\" alt=\"Sass\" src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fsass\u002Fsass-site\u002FHEAD\u002Fsource\u002Fassets\u002Fimg\u002Flogos\u002Flogo.svg\" \u002F>\u003C\u002Fh1>\n\n[![@SassCSS on Twitter](https:\u002F\u002Fimg.shields.io\u002Ftwitter\u002Ffollow\u002FSassCSS?label=%40SassCSS&style=social)](https:\u002F\u002Ftwitter.com\u002FSassCSS)\n&nbsp;&nbsp;\n[![stackoverflow](https:\u002F\u002Fimg.shields.io\u002Fstackexchange\u002Fstackoverflow\u002Ft\u002Fsass?label=Sass%20questions&logo=stackoverflow&style=social)](https:\u002F\u002Fstackoverflow.com\u002Fquestions\u002Ftagged\u002Fsass)\n&nbsp;&nbsp;\n[![Gitter](https:\u002F\u002Fimg.shields.io\u002Fgitter\u002Froom\u002Fsass\u002Fsass?label=chat&logo=gitter&style=social)](https:\u002F\u002Fgitter.im\u002Fsass\u002Fsass?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)\n\n**Sass makes CSS fun again**. Sass is an extension of CSS, adding nested rules,\nvariables, mixins, selector inheritance, and more. It's translated to\nwell-formatted, standard CSS using the command line tool or a plugin for your\nbuild system.\n\n```scss\n$font-stack: Helvetica, sans-serif;\n$primary-color: #333;\n\nbody {\n  font: 100% $font-stack;\n  color: $primary-color;\n}\n\n@mixin border-radius($radius) {\n  -webkit-border-radius: $radius;\n     -moz-border-radius: $radius;\n      -ms-border-radius: $radius;\n          border-radius: $radius;\n}\n\nnav {\n  ul {\n    margin: 0;\n    padding: 0;\n    list-style: none;\n  }\n\n  li { @include border-radius(10px); }\n\n  a {\n    display: block;\n    padding: 6px 12px;\n    text-decoration: none;\n  }\n}\n```\n\n## Install Sass\n\nYou can install Sass on Windows, Mac, or Linux by downloading the package for\nyour operating system [from GitHub] and [adding it to your `PATH`][PATH]. That's\nall—there are no external dependencies and nothing else you need to install.\n\n[from GitHub]: https:\u002F\u002Fgithub.com\u002Fsass\u002Fdart-sass\u002Freleases\n[PATH]: https:\u002F\u002Fkatiek2.github.io\u002Fpath-doc\u002F\n\nIf you use Node.js, you can also install Sass using [npm] by running\n\n[npm]: https:\u002F\u002Fwww.npmjs.com\u002F\n\n```\nnpm install -g sass\n```\n\n**However, please note** that this will install the pure JavaScript\nimplementation of Sass, which runs somewhat slower than the other options listed\nhere. But it has the same interface, so it'll be easy to swap in another\nimplementation later if you need a bit more speed!\n\nSee [the Sass website](https:\u002F\u002Fsass-lang.com\u002Finstall) for more ways to install\nSass.\n\nOnce you have Sass installed, you can run the `sass` executable to compile\n`.sass` and `.scss` files to `.css` files. For example:\n\n```\nsass source\u002Fstylesheets\u002Findex.scss build\u002Fstylesheets\u002Findex.css\n```\n\n## Learn Sass\n\nCheck out [the Sass website](https:\u002F\u002Fsass-lang.com\u002Fguide) for a guide on how to\nlearn Sass!\n\n## This Repository\n\nThis repository isn't an implementation of Sass. Those live in\n[`sass\u002Fdart-sass`] and [`sass\u002Flibsass`]. Instead, it contains:\n\n[`sass\u002Fdart-sass`]: https:\u002F\u002Fgithub.com\u002Fsass\u002Fdart-sass\n[`sass\u002Flibsass`]: https:\u002F\u002Fgithub.com\u002Fsass\u002Flibsass\n\n* [`spec\u002F`], which contains specifications for language features.\n* [`proposal\u002F`], which contains in-progress proposals for changes to the\n  language.\n* [`accepted\u002F`], which contains proposals that have been accepted and are either\n  implemented or in the process of being implemented.\n\n[`spec\u002F`]: https:\u002F\u002Fgithub.com\u002Fsass\u002Fsass\u002Ftree\u002Fmain\u002Fspec\n[`proposal\u002F`]: https:\u002F\u002Fgithub.com\u002Fsass\u002Fsass\u002Ftree\u002Fmain\u002Fproposal\n[`accepted\u002F`]: https:\u002F\u002Fgithub.com\u002Fsass\u002Fsass\u002Ftree\u002Fmain\u002Faccepted\n\nNote that this doesn't contain a full specification of Sass. Instead, feature\nspecifications are written as needed when a new feature is being designed or\nwhen an implementor needs additional clarity about how something is supposed to\nwork. This means many of the specs in `spec\u002F` only cover small portions of the\nfeatures in question.\n\n### Versioning Policy\n\nThe proposals in this repository are versioned, to make it easy to track changes\nover time and to refer to older versions. Every version has a Git tag of the\nform `proposal.\u003Cname>.draft-\u003Cversion>`. A new version should be created for each\nbatch of changes.\n\nEvery version has a major version, and they may have a minor version as well\n(indicated `\u003Cmajor>.\u003Cminor>`). The minor version should be incremented for\nchanges that don't affect the intended semantics of the proposal; otherwise, the\nmajor version should be incremented.\n","Sass 是一种 CSS 预处理器，旨在通过添加变量、嵌套规则、混合宏等功能使 CSS 编写更加灵活和高效。其核心功能包括支持变量定义、嵌套语法、混合宏（mixins）以及继承等特性，这些都极大地增强了 CSS 的可维护性和可读性。Sass 可以通过命令行工具或集成到构建系统中使用，最终将编写的 Sass 代码转换为标准的 CSS 文件。适合于任何需要提高前端开发效率和代码质量的场景，特别是在大型项目中能够显著减少重复代码并简化样式管理过程。",2,"2026-06-11 02:56:43","top_language"]