Skip to content

Commit

Permalink
Fixing CSS indentation issue on documentation site
Browse files Browse the repository at this point in the history
  • Loading branch information
NickPiscitelli committed Feb 2, 2020
1 parent 75f6763 commit 05c4539
Showing 1 changed file with 64 additions and 62 deletions.
126 changes: 64 additions & 62 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,74 +108,76 @@ <h2>Features</h2>
</div>
</div>
</section>

<div class="demo">
<h2>Multiple Items</h2>
<div data-name="Multiple Item" class="glider-contain multiple">
<div class="gradient-border-bottom">
<div class="gradient-border">
<div class="glider" id="glider-double">
<div><h1>1</h1></div>
<div><h1>2</h1></div>
<div><h1>3</h1></div>
<div><h1>4</h1></div>
<div><h1>5</h1></div>
<div><h1>6</h1></div>
<div><h1>7</h1></div>
<div><h1>8</h1></div>
<div><h1>9</h1></div>
<div><h1>10</h1></div>
<div><h1>11</h1></div>
<div><h1>12</h1></div>
<div><h1>13</h1></div>
<div><h1>14</h1></div>
<div><h1>15</h1></div>
<div><h1>16</h1></div>
<div><h1>17</h1></div>
<div><h1>18</h1></div>
</div>
</div>
</div>
<button role="button" aria-label="Previous" class="glider-prev" id="glider-prev-2"><i class="fa fa-chevron-left"></i></i></button>
<button role="button" aria-label="Next" class="glider-next" id="glider-next-2"><i class="fa fa-chevron-right"></i></i></button>
<div id="dots2"></div>
</div>
<script>
window.addEventListener('load', function () {
window.glides = new Glider(document.getElementById('glider-double'), {
slidesToShow: 5,
slidesToScroll: 5,
draggable: true,
dots: '#dots2',
arrows: {
prev: '#glider-prev-2',
next: '#glider-next-2'
}
})
});
</script>
<pre class="line-numbers language-javascript">
<code class="line-numbers language-javascript">
new Glider(document.querySelector('.glider'), {
slidesToShow: 5,
slidesToScroll: 5,
draggable: true,
dots: '.dots',
arrows: {
prev: '.glider-prev',
next: '.glider-next'
}
});
</code>
</pre>
</div>


<!-- First Section -->
<section id="demos" class="main special">
<header class="major">
<h2>Demos</h2>
</header>

<div class="demo first">
<h2>Multiple Items</h2>
<div data-name="Multiple Item" class="glider-contain multiple">
<div class="gradient-border-bottom">
<div class="gradient-border">
<div class="glider" id="glider-double">
<div><h1>1</h1></div>
<div><h1>2</h1></div>
<div><h1>3</h1></div>
<div><h1>4</h1></div>
<div><h1>5</h1></div>
<div><h1>6</h1></div>
<div><h1>7</h1></div>
<div><h1>8</h1></div>
<div><h1>9</h1></div>
<div><h1>10</h1></div>
<div><h1>11</h1></div>
<div><h1>12</h1></div>
<div><h1>13</h1></div>
<div><h1>14</h1></div>
<div><h1>15</h1></div>
<div><h1>16</h1></div>
<div><h1>17</h1></div>
<div><h1>18</h1></div>
</div>
</div>
</div>
<button role="button" aria-label="Previous" class="glider-prev" id="glider-prev-2"><i class="fa fa-chevron-left"></i></i></button>
<button role="button" aria-label="Next" class="glider-next" id="glider-next-2"><i class="fa fa-chevron-right"></i></i></button>
<div id="dots2"></div>
</div>
<script>
window.addEventListener('load', function () {
window.glides = new Glider(document.getElementById('glider-double'), {
slidesToShow: 5,
slidesToScroll: 5,
draggable: true,
dots: '#dots2',
arrows: {
prev: '#glider-prev-2',
next: '#glider-next-2'
}
})
});
</script>
<pre class="line-numbers language-javascript">
<code class="line-numbers language-javascript">
new Glider(document.querySelector('.glider'), {
slidesToShow: 5,
slidesToScroll: 5,
draggable: true,
dots: '.dots',
arrows: {
prev: '.glider-prev',
next: '.glider-next'
}
});
</code>
</pre>
</div>


<div class="demo">
<h2>Single Item</h2>
<div data-name="Single Item" class="glider-contain">
<div class="gradient-border-bottom">
Expand Down

0 comments on commit 05c4539

Please sign in to comment.