Browse Source

example page

pull/213/head
connors 11 years ago
parent
commit
34dfafc3b9
  1. 9
      docs/assets/css/docs.css
  2. BIN
      docs/assets/img/example-android.png
  3. BIN
      docs/assets/img/example-ios.png
  4. BIN
      docs/assets/img/example.png
  5. 1
      docs/examples.html
  6. 9
      sass/docs.scss

9
docs/assets/css/docs.css

@ -388,11 +388,11 @@ body {
margin-right: 10px; margin-right: 10px;
} }
.docs-example-group .example-wrap .example { .docs-example-group .example-wrap .example {
display: inline-block; display: block;
padding: 4px;
overflow: hidden; overflow: hidden;
padding: 3px; padding: 3px;
width: 170px; width: 100%;
height: 100px;
border: 1px solid #dddddd; border: 1px solid #dddddd;
border-radius: 3px; border-radius: 3px;
} }
@ -401,6 +401,7 @@ body {
font-weight: 300; font-weight: 300;
} }
.docs-example-group .example-wrap img { .docs-example-group .example-wrap img {
display: block;
width: 100%; width: 100%;
} }
@ -911,7 +912,6 @@ hr {
} }
.docs-example-group .example-wrap .example { .docs-example-group .example-wrap .example {
width: 180px; width: 180px;
height: 120px;
} }
} }
@media screen and (min-width: 1200px) { @media screen and (min-width: 1200px) {
@ -929,7 +929,6 @@ hr {
.docs-example-group .example-wrap .example { .docs-example-group .example-wrap .example {
width: 220px; width: 220px;
height: 150px;
} }
} }
.container { .container {

BIN
docs/assets/img/example-android.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
docs/assets/img/example-ios.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
docs/assets/img/example.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 KiB

1
docs/examples.html

@ -16,7 +16,6 @@ title: Examples · Ratchet
</div> </div>
{% include ad.html %} {% include ad.html %}
</div> </div>
{% include toolbar.html %}
</div> </div>
<div class="container"> <div class="container">

9
sass/docs.scss

@ -387,11 +387,11 @@ body {
margin-right: 10px; margin-right: 10px;
} }
.example { .example {
display: inline-block; display: block;
padding: 4px;
overflow: hidden; overflow: hidden;
padding: 3px; padding: 3px;
width: 170px; width: 100%;
height: 100px;
border: $border-default; border: $border-default;
border-radius: 3px; border-radius: 3px;
} }
@ -400,6 +400,7 @@ body {
font-weight: 300; font-weight: 300;
} }
img { img {
display: block;
width: 100%; width: 100%;
} }
} }
@ -919,7 +920,6 @@ hr {
.example { .example {
width: 180px; width: 180px;
height: 120px;
} }
} }
} }
@ -938,7 +938,6 @@ hr {
// Examples // Examples
.docs-example-group .example-wrap .example { .docs-example-group .example-wrap .example {
width: 220px; width: 220px;
height: 150px;
} }
} }

Loading…
Cancel
Save