<p>You can disable zooming capabilities on mobile devices by adding <code>user-scalable=no</code> 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!</p>
<p>You can disable zooming capabilities on mobile devices by adding <code>user-scalable=no</code> 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!</p>
@@ -730,7 +730,7 @@ lead: "Global CSS settings, fundamental HTML elements styled and enhanced with e
...
@@ -730,7 +730,7 @@ lead: "Global CSS settings, fundamental HTML elements styled and enhanced with e
<h3>Small text</h3>
<h3>Small text</h3>
<p>For de-emphasizing inline or blocks of text, use the <code><small></code> tag to set text at 85% the size of the parent. Heading elements receive their own <code>font-size</code> for nested <code><small></code> elements.</p>
<p>For de-emphasizing inline or blocks of text, use the <code><small></code> tag to set text at 85% the size of the parent. Heading elements receive their own <code>font-size</code> for nested <code><small></code> elements.</p>
<p>You may alternatively use an inline element with <code>.small</code> in place of any <code><small></code></p>
<p>You may alternatively use an inline element with <code>.small</code> in place of any <code><small></code>.</p>
<divclass="bs-example">
<divclass="bs-example">
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
</div>
</div>
...
@@ -867,7 +867,7 @@ lead: "Global CSS settings, fundamental HTML elements styled and enhanced with e
...
@@ -867,7 +867,7 @@ lead: "Global CSS settings, fundamental HTML elements styled and enhanced with e
{% endhighlight %}
{% endhighlight %}
<h4>Alternate displays</h4>
<h4>Alternate displays</h4>
<p>Add <code>.blockquote-reverse</code> for blockquote with right-aligned content.</p>
<p>Add <code>.blockquote-reverse</code> for a blockquote with right-aligned content.</p>
<divclass="bs-example"style="overflow: hidden;">
<divclass="bs-example"style="overflow: hidden;">
<blockquoteclass="blockquote-reverse">
<blockquoteclass="blockquote-reverse">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
...
@@ -1040,10 +1040,10 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -1040,10 +1040,10 @@ For example, <code><section></code> should be wrapped as inline.
<h2id="code-user-input">User input</h2>
<h2id="code-user-input">User input</h2>
<p>Use the <code><kbd></code> to indicate input that is typically entered via keyboard.</p>
<p>Use the <code><kbd></code> to indicate input that is typically entered via keyboard.</p>
<divclass="bs-example">
<divclass="bs-example">
To switch directories, type <kbd>cd</kbd> followed the name of the directory.
To switch directories, type <kbd>cd</kbd> followed by the name of the directory.
</div>
</div>
{% highlight html %}
{% highlight html %}
To switch directories, type <kbd>cd</kbd> followed the name of the directory.
To switch directories, type <kbd>cd</kbd> followed by the name of the directory.
{% endhighlight %}
{% endhighlight %}
<h2id="code-block">Basic block</h2>
<h2id="code-block">Basic block</h2>
...
@@ -2241,7 +2241,7 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -2241,7 +2241,7 @@ For example, <code><section></code> should be wrapped as inline.
<h2id="buttons-active">Active state</h2>
<h2id="buttons-active">Active state</h2>
<p>Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <code><button></code> elements, this is done via <code>:active</code>. For <code><a></code> elements, it's done with <code>.active</code>. However, you may use <code>.active</code><code><button></code>s should you need to replicate the active state progammatically.</p>
<p>Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <code><button></code> elements, this is done via <code>:active</code>. For <code><a></code> elements, it's done with <code>.active</code>. However, you may use <code>.active</code>on <code><button></code>s should you need to replicate the active state progammatically.</p>
<h3>Button element</h3>
<h3>Button element</h3>
<p>No need to add <code>:active</code> as it's a pseudo-class, but if you need to force the same appearance, go ahead and add <code>.active</code>.</p>
<p>No need to add <code>:active</code> as it's a pseudo-class, but if you need to force the same appearance, go ahead and add <code>.active</code>.</p>
...
@@ -2954,7 +2954,7 @@ a {
...
@@ -2954,7 +2954,7 @@ a {
<h2id="less-mixins-vendor">Vendor mixins</h2>
<h2id="less-mixins-vendor">Vendor mixins</h2>
<p>Vendor mixins are mixins to help support multiple browsers by including all relevant vendor prefixs in your compiled CSS.</p>
<p>Vendor mixins are mixins to help support multiple browsers by including all relevant vendor prefixes in your compiled CSS.</p>
<p><strong>Heads up!</strong> Should you ever need to remove a gradient, be sure to remove any IE-specific <code>filter</code> you may have added. You can do that by using <code>.reset-filter()</code> mixin alignside <code>background-image: none;</code>.</p>
<p><strong>Heads up!</strong> Should you ever need to remove a gradient, be sure to remove any IE-specific <code>filter</code> you may have added. You can do that by using the <code>.reset-filter()</code> mixin alongside <code>background-image: none;</code>.</p>
<h2id="less-mixins-utility">Utility mixins</h2>
<h2id="less-mixins-utility">Utility mixins</h2>
...
@@ -3334,7 +3334,7 @@ a {
...
@@ -3334,7 +3334,7 @@ a {
</tbody>
</tbody>
</table>
</table>
</div>
</div>
<p>Visit the <ahref="{{ site.sass_repo }}">Sass port's GitHub repository</a> to see this files in action.</p>
<p>Visit the <ahref="{{ site.sass_repo }}">Sass port's GitHub repository</a> to see these files in action.</p>