From 54fa28441c5f0bdcd9687615f4a6b7a0fab024a3 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 7 Sep 2018 11:26:02 +0200 Subject: install bootstrap via composer --- .../bootstrap/site/docs/4.1/utilities/colors.md | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 vendor/twbs/bootstrap/site/docs/4.1/utilities/colors.md (limited to 'vendor/twbs/bootstrap/site/docs/4.1/utilities/colors.md') diff --git a/vendor/twbs/bootstrap/site/docs/4.1/utilities/colors.md b/vendor/twbs/bootstrap/site/docs/4.1/utilities/colors.md new file mode 100644 index 000000000..573782644 --- /dev/null +++ b/vendor/twbs/bootstrap/site/docs/4.1/utilities/colors.md @@ -0,0 +1,61 @@ +--- +layout: docs +title: Colors +description: Convey meaning through color with a handful of color utility classes. Includes support for styling links with hover states, too. +group: utilities +toc: true +--- + +## Color + +{% capture example %} +{% for color in site.data.theme-colors %} +

.text-{{ color.name }}

{% endfor %} +

.text-body

+

.text-muted

+

.text-white

+

.text-black-50

+

.text-white-50

+{% endcapture %} +{% include example.html content=example %} + +Contextual text classes also work well on anchors with the provided hover and focus states. **Note that the `.text-white` and `.text-muted` class has no additional link styling beyond underline.** + +{% capture example %} +{% for color in site.data.theme-colors %} +

{{ color.name | capitalize }} link

{% endfor %} +

Muted link

+

White link

+{% endcapture %} +{% include example.html content=example %} + +## Background color + +Similar to the contextual text color classes, easily set the background of an element to any contextual class. Anchor components will darken on hover, just like the text classes. Background utilities **do not set `color`**, so in some cases you'll want to use `.text-*` utilities. + +{% capture example %} +{% for color in site.data.theme-colors %} +
.bg-{{ color.name }}
{% endfor %} +
.bg-white
+
.bg-transparent
+{% endcapture %} +{% include example.html content=example %} + +## Background gradient + +When `$enable-gradients` is set to true, you'll be able to use `.bg-gradient-` utility classes. **By default, `$enable-gradients` is disabled and the example below is intentionally broken.** This is done for easier customization from the moment you start using Bootstrap. [Learn about our Sass options]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/theming/#sass-options) to enable these classes and more. + +{% capture example %} +{% for color in site.data.theme-colors %} +
.bg-gradient-{{ color.name }}
{% endfor %} +{% endcapture %} +{% include example.html content=example %} + +{% capture callout %} +#### Dealing with specificity + +Sometimes contextual classes cannot be applied due to the specificity of another selector. In some cases, a sufficient workaround is to wrap your element's content in a `
` with the class. +{% endcapture %} +{% include callout.html content=callout type="info" %} + +{% include callout-warning-color-assistive-technologies.md %} -- cgit v1.2.3