如何在 Bulma 中修改 CSS 变量?
How to modify CSS variables in Bulma?
我正在使用 bulma.css,它有 CSS 个变量 here
// Override initial variables here
// You can add new ones or update existing ones:
$blue: #72d0eb // Update blue
$pink: #ffb3b3 // Add pink
$family-serif: "Georgia", serif // Add a serif family
// Override generated variables here
// For example, by default, the $danger color is $red and the font is sans-serif
// You can change these values:
$danger: $orange // Use the existing orange
$family-primary: $family-serif // Use the new serif family
这些需要用 Sass 修改,但我没有使用任何 CSS 预处理器,所以我如何修改变量而不改变主 CSS 文件并进行覆盖?
CSS 没有变量。如果不使用预处理器或逐一编辑每个值,则无法编辑变量(SASS 中的变量通常会做什么)。
我正在使用 bulma.css,它有 CSS 个变量 here
// Override initial variables here
// You can add new ones or update existing ones:
$blue: #72d0eb // Update blue
$pink: #ffb3b3 // Add pink
$family-serif: "Georgia", serif // Add a serif family
// Override generated variables here
// For example, by default, the $danger color is $red and the font is sans-serif
// You can change these values:
$danger: $orange // Use the existing orange
$family-primary: $family-serif // Use the new serif family
这些需要用 Sass 修改,但我没有使用任何 CSS 预处理器,所以我如何修改变量而不改变主 CSS 文件并进行覆盖?
CSS 没有变量。如果不使用预处理器或逐一编辑每个值,则无法编辑变量(SASS 中的变量通常会做什么)。