精品久久久久久亚洲精品_成人午夜网站_www日本高清_亚洲精品久久久久午夜福

Sass

Utilize our source Sass files to take advantage of variables, maps, mixins, and functions to help you build faster and customize your project.

Utilize our source Sass files to take advantage of variables, maps, mixins, and more.

File structure

Whenever possible, avoid modifying Bootstrap’s core files. For Sass, that means creating your own stylesheet that imports Bootstrap so you can modify and extend it. Assuming you’re using a package manager like npm, you’ll have a file structure that looks like this:

your-project/
├── scss
│   └── custom.scss
└── node_modules/
└── bootstrap
    ├── js
    └── scss

If you’ve downloaded our source files and aren’t using a package manager, you’ll want to manually setup something similar to that structure, keeping Bootstrap’s source files separate from your own.

your-project/
├── scss
│   └── custom.scss
└── bootstrap/
├── js
└── scss

Importing

In your custom.scss, you’ll import Bootstrap’s source Sass files. You have two options: include all of Bootstrap, or pick the parts you need. We encourage the latter, though be aware there are some requirements and dependencies across our components. You also will need to include some JavaScript for our plugins.

// Custom.scss
// Option A: Include all of Bootstrap

// Include any default variable overrides here (though functions won't be available)

@import "../node_modules/bootstrap/scss/bootstrap";

// Then add additional custom code here
// Custom.scss
// Option B: Include parts of Bootstrap

// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
@import "../node_modules/bootstrap/scss/functions";

// 2. Include any default variable overrides here

// 3. Include remainder of required Bootstrap stylesheets
@import "../node_modules/bootstrap/scss/variables";
@import "../node_modules/bootstrap/scss/mixins";

// 4. Include any optional Bootstrap components as you like
@import "../node_modules/bootstrap/scss/root";
@import "../node_modules/bootstrap/scss/reboot";
@import "../node_modules/bootstrap/scss/type";
@import "../node_modules/bootstrap/scss/images";
@import "../node_modules/bootstrap/scss/containers";
@import "../node_modules/bootstrap/scss/grid";

// 5. Add additional custom code here

With that setup in place, you can begin to modify any of the Sass variables and maps in your custom.scss. You can also start to add parts of Bootstrap under the // Optional section as needed. We suggest using the full import stack from our bootstrap.scss file as your starting point.

Variable defaults

Every Sass variable in Bootstrap includes the !default flag allowing you to override the variable’s default value in your own Sass without modifying Bootstrap’s source code. Copy and paste variables as needed, modify their values, and remove the !default flag. If a variable has already been assigned, then it won’t be re-assigned by the default values in Bootstrap.

You will find the complete list of Bootstrap’s variables in scss/_variables.scss. Some variables are set to null, these variables don’t output the property unless they are overridden in your configuration.

Variable overrides must come after our functions, variables, and mixins are imported, but before the rest of the imports.

Here’s an example that changes the background-color and color for the <body> when importing and compiling Bootstrap via npm:

// Required
@import "../node_modules/bootstrap/scss/functions";

// Default variable overrides
$body-bg: #000;
$body-color: #111;

// Required
@import "../node_modules/bootstrap/scss/variables";
@import "../node_modules/bootstrap/scss/mixins";

// Bootstrap and its default variables

// Optional Bootstrap components here
@import "../node_modules/bootstrap/scss/root";
@import "../node_modules/bootstrap/scss/reboot";
@import "../node_modules/bootstrap/scss/type";
// etc

Repeat as necessary for any variable in Bootstrap, including the global options below.

Get started with Bootstrap via npm with our starter project! Head to the twbs/bootstrap-npm-starter template repository to see how to build and customize Bootstrap in your own npm project. Includes Sass compiler, Autoprefixer, Stylelint, PurgeCSS, and Bootstrap Icons.

Maps and loops

Bootstrap includes a handful of Sass maps, key value pairs that make it easier to generate families of related CSS. We use Sass maps for our colors, grid breakpoints, and more. Just like Sass variables, all Sass maps include the !default flag and can be overridden and extended.

Some of our Sass maps are merged into empty ones by default. This is done to allow easy expansion of a given Sass map, but comes at the cost of making removing items from a map slightly more difficult.

Modify map

All variables in the $theme-colors map are defined as standalone variables. To modify an existing color in our $theme-colors map, add the following to your custom Sass file:

$primary: #0074d9;
$danger: #ff4136;

Later on, theses variables are set in Bootstrap’s $theme-colors map:

$theme-colors: (
"primary": $primary,
"danger": $danger
);

Add to map

Add new colors to $theme-colors, or any other map, by creating a new Sass map with your custom values and merging it with the original map. In this case, we’ll create a new $custom-colors map and merge it with $theme-colors.

// Create your own map
$custom-colors: (
"custom-color": #900
);

// Merge the maps
$theme-colors: map-merge($theme-colors, $custom-colors);

Remove from map

To remove colors from $theme-colors, or any other map, use map-remove. Be aware you must insert it between our requirements and options:

// Required
@import "../node_modules/bootstrap/scss/functions";
@import "../node_modules/bootstrap/scss/variables";
@import "../node_modules/bootstrap/scss/mixins";

$theme-colors: map-remove($theme-colors, "info", "light", "dark");

// Optional
@import "../node_modules/bootstrap/scss/root";
@import "../node_modules/bootstrap/scss/reboot";
@import "../node_modules/bootstrap/scss/type";
// etc

Required keys

Bootstrap assumes the presence of some specific keys within Sass maps as we used and extend these ourselves. As you customize the included maps, you may encounter errors where a specific Sass map’s key is being used.

For example, we use the primary, success, and danger keys from $theme-colors for links, buttons, and form states. Replacing the values of these keys should present no issues, but removing them may cause Sass compilation issues. In these instances, you’ll need to modify the Sass code that makes use of those values.

Functions

Colors

Next to the Sass maps we have, theme colors can also be used as standalone variables, like $primary.

.custom-element {
color: $gray-100;
background-color: $dark;
}

You can lighten or darken colors with Bootstrap’s tint-color() and shade-color() functions. These functions will mix colors with black or white, unlike Sass' native lighten() and darken() functions which will change the lightness by a fixed amount, which often doesn’t lead to the desired effect.

// Tint a color: mix a color with white
@function tint-color($color, $weight) {
@return mix(white, $color, $weight);
}

// Shade a color: mix a color with black
@function shade-color($color, $weight) {
@return mix(black, $color, $weight);
}

// Shade the color if the weight is positive, else tint it
@function shift-color($color, $weight) {
@return if($weight > 0, shade-color($color, $weight), tint-color($color, -$weight));
}

In practice, you’d call the function and pass in the color and weight parameters.

.custom-element {
color: tint-color($primary, 10%);
}

.custom-element-2 {
color: shade-color($danger, 30%);
}

Color contrast

In order to meet WCAG 2.0 accessibility standards for color contrast, authors must provide a contrast ratio of at least 4.5:1, with very few exceptions.

An additional function we include in Bootstrap is the color contrast function, color-contrast. It utilizes the WCAG 2.0 algorithm for calculating contrast thresholds based on relative luminance in a sRGB colorspace to automatically return a light (#fff), dark (#212529) or black (#000) contrast color based on the specified base color. This function is especially useful for mixins or loops where you’re generating multiple classes.

For example, to generate color swatches from our $theme-colors map:

@each $color, $value in $theme-colors {
.swatch-#{$color} {
color: color-contrast($value);
}
}

It can also be used for one-off contrast needs:

.custom-element {
color: color-contrast(#000); // returns `color: #fff`
}

You can also specify a base color with our color map functions:

.custom-element {
color: color-contrast($dark); // returns `color: #fff`
}

Escape SVG

We use the escape-svg function to escape the <, > and # characters for SVG background images. When using the escape-svg function, data URIs must be quoted.

Add and Subtract functions

We use the add and subtract functions to wrap the CSS calc function. The primary purpose of these functions is to avoid errors when a “unitless” 0 value is passed into a calc expression. Expressions like calc(10px - 0) will return an error in all browsers, despite being mathematically correct.

Example where the calc is valid:

$border-radius: .25rem;
$border-width: 1px;

.element {
// Output calc(.25rem - 1px) is valid
  border-radius: calc($border-radius - $border-width);
}

.element {
// Output the same calc(.25rem - 1px) as above
  border-radius: subtract($border-radius, $border-width);
}

Example where the calc is invalid:

$border-radius: .25rem;
$border-width: 0;

.element {
// Output calc(.25rem - 0) is invalid
  border-radius: calc($border-radius - $border-width);
}

.element {
// Output .25rem
  border-radius: subtract($border-radius, $border-width);
}
返回頂部
精品久久久久久亚洲精品_成人午夜网站_www日本高清_亚洲精品久久久久午夜福

      国产精品一区视频| 亚洲一区二区免费| 美女久久一区| 日韩一级黄色大片| 加勒比av一区二区| 国产精品高潮呻吟久久av无限| 国产精品三上| 欧美成年人在线观看| 亚洲一二三级电影| 亚洲二区视频| 国产日韩欧美视频在线| 欧美精品亚洲| 女同性一区二区三区人了人一| 欧美aa在线视频| 翔田千里一区二区| 亚洲国产mv| 欧美一级免费视频| 亚洲最新在线| 在线成人av| 国产视频在线观看一区二区| 狠狠综合久久av一区二区小说| 亚洲国产一区二区精品专区| 欧美影院在线| 亚洲欧美日韩直播| 免费成人美女女| 久久国产主播| 欧美一区二区视频在线| 亚洲免费视频在线观看| 99热精品在线| 亚洲乱码日产精品bd| 亚洲激情第一区| 在线播放中文字幕一区| 樱桃成人精品视频在线播放| 国产精品日韩精品| 国产精品蜜臀在线观看| 国产精品美女久久| 亚洲一级黄色片| 亚洲天堂av图片| 99精品国产福利在线观看免费 | 亚洲视频综合| 欧美日韩伦理在线免费| 亚洲午夜一区二区| 亚洲国产日韩综合一区| 在线精品国产成人综合| 在线成人h网| 亚洲人成艺术| 久久精品一区二区三区中文字幕| 国产精品久久久久久久7电影 | 一区二区在线不卡| 六月婷婷一区| 欧美大片免费看| 欧美日韩色综合| 国产精品久久久久久久久果冻传媒 | 欧美伊人久久| 国语自产精品视频在线看8查询8| 欧美区亚洲区| 国产女主播一区二区| 狠狠色丁香婷婷综合影院| 国产精品久久久久久久久动漫| 欧美成人一二三| 国产精品国产三级欧美二区| 欧美va天堂va视频va在线| 欧美三级视频在线观看| 国产欧美精品一区| 亚洲黄色天堂| 亚洲免费网站| 久久综合九色综合欧美就去吻| 一区二区久久| 久久久久久婷| 欧美视频三区在线播放| 国产视频不卡| 亚洲小说春色综合另类电影| 久久大逼视频| 国产精品久久久久久福利一牛影视| 久久综合五月| 久久婷婷久久一区二区三区| 国产精品av免费在线观看| 尤物yw午夜国产精品视频明星| 狠狠狠色丁香婷婷综合激情| 99精品福利视频| 欧美freesex交免费视频| 国产一区二区三区在线观看网站| 国产欧美一区二区三区国产幕精品 | 欧美午夜三级| 亚洲日韩欧美视频| 日韩午夜激情电影| 美女福利精品视频| 国产一区二区高清| 亚洲欧美在线观看| 国产精品高清网站| 中文欧美字幕免费| 先锋影音国产精品| 欧美日韩亚洲视频一区| 在线日韩av| 久久久久久伊人| 欧美精品三区| 亚洲日韩欧美视频| 中文国产成人精品久久一| 欧美日韩国产高清| 99xxxx成人网| 欧美三级在线播放| 亚洲一区二区av电影| 国产精品wwwwww| 国语自产精品视频在线看8查询8| 亚洲激情小视频| 免费日韩精品中文字幕视频在线| 欧美日韩一区二区三区高清| 亚洲精品美女在线观看| 欧美成在线观看| 日韩亚洲精品视频| 国产精品久久久久av| 午夜一级在线看亚洲| 国内久久婷婷综合| 亚洲特级毛片| 国产一区二区三区免费在线观看| 亚洲国产美国国产综合一区二区| 亚洲视频一区二区| 国产精品美女一区二区| 欧美一区二区三区婷婷月色| 狠狠爱综合网| 欧美激情一级片一区二区| 99视频热这里只有精品免费| 国产精品久久久久9999高清| 91久久久久久| 欧美特黄一级| 久久免费少妇高潮久久精品99| 欧美日韩一区二区在线观看视频 | 国产综合色产在线精品| 久久精品一区二区三区中文字幕| 欧美性事在线| 久久精品国产一区二区电影| 1024成人| 国产精品一区2区| 久久综合亚洲社区| 亚洲深夜福利| 狠久久av成人天堂| 午夜欧美精品久久久久久久| 尤物yw午夜国产精品视频| 欧美一区二区三区日韩视频| 欧美日韩三级一区二区| 欧美综合国产| 国产曰批免费观看久久久| 亚洲制服欧美中文字幕中文字幕| 欧美日韩精品福利| 久久美女性网| 亚洲欧美日韩电影| 亚洲伦理在线| 伊人久久婷婷色综合98网| 欧美日韩一区二区高清| 另类亚洲自拍| 亚洲第一网站| 国产农村妇女精品| 欧美激情在线免费观看| 久久久久久久波多野高潮日日 | 欧美一级一区| 妖精视频成人观看www| 在线欧美日韩| 韩国在线一区| 国产午夜久久| 国产欧美日韩精品丝袜高跟鞋| 亚洲欧美日本国产专区一区| 亚洲国产精品国自产拍av秋霞 | 在线免费日韩片| 红桃视频国产一区| 国产亚洲欧美一区在线观看| 国产精品久久久久影院亚瑟| 欧美日韩国产美| 欧美精品一区二区在线播放| 亚洲一级黄色| 亚洲先锋成人| 午夜视频在线观看一区| 国产在线视频不卡二| 国产色视频一区| 国产欧美日韩一区| 国产欧美在线观看| 国产亚洲精品aa午夜观看| 国产人久久人人人人爽| 国产三区精品| 在线观看日韩国产| 亚洲国产片色| 一区二区三区四区五区精品| 一区二区三区四区五区精品视频| 国产在线视频不卡二| 亚洲国产成人精品久久| 亚洲三级色网| 亚洲在线一区| 久久久久久尹人网香蕉| 免费在线视频一区| 欧美日韩伦理在线| 久久久99国产精品免费| 久久久精品一区二区三区| 亚洲午夜激情网页| 在线亚洲美日韩| 欧美一区二区三区免费观看视频 | 欧美在线二区| 美女精品在线| 国产精品视频网址| 一区二区三区在线视频观看| 国产伦精品一区二区三区高清| 欧美国产91|