Deleted Swarm and centered included items.

This commit is contained in:
Sean Li 2015-07-14 11:44:32 -07:00
parent 35675727bf
commit 75ee11b1c9
3 changed files with 10 additions and 13 deletions

View File

@ -51,13 +51,6 @@
<p>Define multi-container applications. (Mac OS X only)</p> <p>Define multi-container applications. (Mac OS X only)</p>
</div> </div>
</div> </div>
<div class="item">
<div class="info">
<img src="{{.Site.BaseURL}}/images/swarm.png">
<h3>Docker Swarm</h3>
<p>Host clustering and container scheduling.</p>
</div>
</div>
<div class="item"> <div class="item">
<div class="info"> <div class="info">
<img src="{{.Site.BaseURL}}/images/kitematic.png"> <img src="{{.Site.BaseURL}}/images/kitematic.png">

View File

@ -290,12 +290,15 @@ table {
-ms-flex-flow: row wrap; -ms-flex-flow: row wrap;
flex-flow: row wrap; flex-flow: row wrap;
} }
.content .items .item {
text-align: center;
}
.content .items .item img { .content .items .item img {
width: 100px; width: 100px;
height: auto; height: auto;
} }
.content .items .item .info { .content .items .item .info {
padding-right: 1rem; padding-right: 1.5rem;
} }
.content .documentation { .content .documentation {
padding: 2rem 0; padding: 2rem 0;
@ -348,8 +351,8 @@ table {
} }
@media screen and (min-width: 500px) { @media screen and (min-width: 500px) {
.items .item { .items .item {
max-width: 20%; max-width: 25%;
min-width: 140px; min-width: 160px;
} }
} }
.footer { .footer {

View File

@ -142,12 +142,13 @@
.flex-display(); .flex-display();
.flex-flow(row wrap); .flex-flow(row wrap);
.item { .item {
text-align: center;
img { img {
width: 100px; width: 100px;
height: auto; height: auto;
} }
.info { .info {
padding-right: 1rem; padding-right: 1.5rem;
} }
} }
} }
@ -212,8 +213,8 @@
@media screen and (min-width: 500px) { @media screen and (min-width: 500px) {
.items { .items {
.item { .item {
max-width: 20%; max-width: 25%;
min-width: 140px; min-width: 160px;
} }
} }
} }