diff --git a/docs/css.html b/docs/css.html index b1beac26ed..ed0f04a4fe 100644 --- a/docs/css.html +++ b/docs/css.html @@ -28,7 +28,7 @@ lead: "Global CSS settings, fundamental HTML elements styled and enhanced with e {% highlight html %} {% endhighlight %} -

You can disable zooming capabilities on mobile devices by adding user-scalable=no to the viewport meta tag. This disables zooming, meaning users are only able to scroll, and results in your site feeling a bit more like a native application. Overall we don't recommend this on every site, so use caution!

+

You can disable zooming capabilities on mobile devices by adding user-scalable=no to the viewport meta tag. This disables zooming, meaning users are only able to scroll, and results in your site feeling a bit more like a native application. Overall, we don't recommend this on every site, so use caution!

{% highlight html %} {% endhighlight %} @@ -730,7 +730,7 @@ lead: "Global CSS settings, fundamental HTML elements styled and enhanced with e

Small text

For de-emphasizing inline or blocks of text, use the <small> tag to set text at 85% the size of the parent. Heading elements receive their own font-size for nested <small> elements.

-

You may alternatively use an inline element with .small in place of any <small>

+

You may alternatively use an inline element with .small in place of any <small>.

This line of text is meant to be treated as fine print.

@@ -867,7 +867,7 @@ lead: "Global CSS settings, fundamental HTML elements styled and enhanced with e {% endhighlight %}

Alternate displays

-

Add .blockquote-reverse for blockquote with right-aligned content.

+

Add .blockquote-reverse for a blockquote with right-aligned content.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

@@ -1040,10 +1040,10 @@ For example, <section> should be wrapped as inline.

User input

Use the <kbd> to indicate input that is typically entered via keyboard.

- To switch directories, type cd followed the name of the directory. + To switch directories, type cd followed by the name of the directory.
{% highlight html %} - To switch directories, type cd followed the name of the directory. + To switch directories, type cd followed by the name of the directory. {% endhighlight %}

Basic block

@@ -2241,7 +2241,7 @@ For example, <section> should be wrapped as inline.

Active state

-

Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <button> elements, this is done via :active. For <a> elements, it's done with .active. However, you may use .active <button>s should you need to replicate the active state progammatically.

+

Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <button> elements, this is done via :active. For <a> elements, it's done with .active. However, you may use .active on <button>s should you need to replicate the active state progammatically.

Button element

No need to add :active as it's a pseudo-class, but if you need to force the same appearance, go ahead and add .active.

@@ -2954,7 +2954,7 @@ a {

Vendor mixins

-

Vendor mixins are mixins to help support multiple browsers by including all relevant vendor prefixs in your compiled CSS.

+

Vendor mixins are mixins to help support multiple browsers by including all relevant vendor prefixes in your compiled CSS.

Box-sizing

@@ -3026,7 +3026,7 @@ a { {% endhighlight %}

Transformations

-

Rorate, scale, translate (move), or skew any object.

+

Rotate, scale, translate (move), or skew any object.

{% highlight css %} .rotate(@degrees) { -webkit-transform: rotate(@degrees); @@ -3082,7 +3082,7 @@ a { {% endhighlight %}

Animations

-

A single mixin for using all CSS3's animation properties in one declarations and other mixins for individual properties.

+

A single mixin for using all of CSS3's animation properties in one declaration and other mixins for individual properties.

{% highlight css %} .animation(@animation) { -webkit-animation: @animation; @@ -3172,7 +3172,7 @@ a { #gradient > .vertical-three-colors(#777; #333; .25; #000); #gradient > .horizontal-three-colors(#777; #333; .25; #000); {% endhighlight %} -

Heads up! Should you ever need to remove a gradient, be sure to remove any IE-specific filter you may have added. You can do that by using .reset-filter() mixin alignside background-image: none;.

+

Heads up! Should you ever need to remove a gradient, be sure to remove any IE-specific filter you may have added. You can do that by using the .reset-filter() mixin alongside background-image: none;.

Utility mixins

@@ -3334,7 +3334,7 @@ a {
-

Visit the Sass port's GitHub repository to see this files in action.

+

Visit the Sass port's GitHub repository to see these files in action.

Installation