Skip to content

Commit 9a9450c

Browse files
committed
copyedit index.html
1 parent f308468 commit 9a9450c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ <h2 class="header-divider" id="variables">Variables</h2>
9191
<p class="lead">Variables still don't exist in CSS, but they do in LESS and other CSS preprocessors. Preboot includes a several groups of meaningful and useful variables for any project.</p>
9292

9393
<h3 id="variables-colors">Colors</h3>
94-
<p>Easily make use of two color schemes included in Preboot: grayscale and semantic. Grayscale colors provide quick access to shades of black (in increments of 10%) while semantic include various colors assigned to meaningful values.</p>
94+
<p>Easily make use of two color schemes included in Preboot: grayscale and semantic. Grayscale colors provide quick access to shades of black (in increments of 10%) while semantic includes various colors assigned to meaningful values.</p>
9595
<div class="color-swatches">
9696
<div class="color-swatch black-10"></div>
9797
<div class="color-swatch black-20"></div>
@@ -205,7 +205,7 @@ <h3 id="variables-typography">Typography</h3>
205205

206206
<section id="grid-system">
207207
<h2 class="header-divider">Grid system</h2>
208-
<p class="lead">Generate semantic, mobile-first grid layouts with a few variables and mixins, all without superflous markup.</p>
208+
<p class="lead">Generate semantic, mobile-first grid layouts with a few variables and mixins, all without superfluous markup.</p>
209209

210210
<h3 id="grid-variables">Grid variables</h3>
211211
<p>There are three grid variables that Preboot uses to power the grid mixins.</p>
@@ -282,7 +282,7 @@ <h3 id="grid-example">Example usage</h3>
282282
.make-column-offset(1);
283283
}
284284
{% endhighlight %}
285-
<p><strong>Need another example?</strong> Our table of contents at the top of the page uses a custom grid as well. In the source docs.less file you'll find it's super lightweight implementation:</p>
285+
<p><strong>Need another example?</strong> Our table of contents at the top of the page uses a custom grid as well. In the source docs.less file you'll find its super lightweight implementation:</p>
286286
{% highlight css linenos %}
287287
.row { .make-row(); }
288288
.grid-4 { .make-column(4); }
@@ -328,7 +328,7 @@ <h3 id="mixins-rounded-corners">Rounded corners</h3>
328328
{% endhighlight %}
329329

330330
<h3 id="mixins-box-shadow">Box (Drop) shadows</h3>
331-
<p>If your target audience is using the latest and greatest browsers and devices, be sure to just use the <code>box-shadow</code> property on it's own. If you need support for older Android (pre-v4) and iOS devices (pre-iOS 5), use of the mixin to pick up the required <code>-webkit</code> prefix.</p>
331+
<p>If your target audience is using the latest and greatest browsers and devices, be sure to just use the <code>box-shadow</code> property on its own. If you need support for older Android (pre-v4) and iOS devices (pre-iOS 5), use the mixin to pick up the required <code>-webkit</code> prefix.</p>
332332
<p>Be sure to use RGBA colors in your box shadows so they blend as seamlessly as possible with backgrounds.</p>
333333
{% highlight css linenos %}
334334
.box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) {
@@ -361,7 +361,7 @@ <h3 id="mixins-transitions">Transitions</h3>
361361
{% endhighlight %}
362362

363363
<h3 id="mixins-transformations">Transformations</h3>
364-
<p>Rorate, scale, translate (move), or skew any object.</p>
364+
<p>Rotate, scale, translate (move), or skew any object.</p>
365365
{% highlight css linenos %}
366366
.rotate(@degrees) {
367367
-webkit-transform: rotate(@degrees);
@@ -457,7 +457,7 @@ <h3 id="mixins-gradients">Gradients</h3>
457457
#gradient > .vertical-three-colors(#777, #333, .25, #000);
458458
#gradient > .horizontal-three-colors(#777, #333, .25, #000);
459459
{% endhighlight %}
460-
<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>
460+
<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 alongside <code>background-image: none;</code>.</p>
461461
</section>
462462

463463

0 commit comments

Comments
 (0)