我正在使用Zurb基金会,并决定开始使用它Sass并且我遇到了最基本的问题。
我已成功遵循此安装指南: http://foundation.zurb.com/docs/sass.html
我已成功使用Compass创建我的项目: 基础新项目名称--libsass
这是问题所在: 为了概念验证,我只是使用示例“Index.html”文件并修改“_settings.scss”中的设置,但我没有看到页面上的更改。
(我已经看到了需要编译Sass的提及,但是我没有在文档中看到它。)
我已经确认我的导入等都按照此文档设置: http://foundation.zurb.com/docs/v/3.2.5/sass.php
这是受影响的代码: _setings.scss
// Foundation by ZURB
// foundation.zurb.com
// Licensed under MIT Open Source
//
// FOUNDATION SETTINGS
//
// This is the default html and body font-size for the base rem value.
// $rem-base: 16px;
// Allows the use of rem-calc() or lower-bound() in your settings
@import "foundation/functions";
// Global
// We use these to control various global styles
$body-bg: #000;
$body-font-color: #c0c0c0;
// Panels
// $include-html-panel-classes: $include-html-classes;
// We use these to control the background and border styles
$panel-bg: scale-color(#000, $lightness: -5%);
// $panel-border-style: solid;
// $panel-border-size: 1px;
app.scss:
@import "settings";
@import "foundation";
我在Windows上这样做(道歉,如果这让你不寒而栗)。任何帮助是极大的赞赏。
感谢。