0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

Specify img dimensions in the HTML.

This commit is contained in:
XhmikosR 2014-11-13 18:27:41 +02:00
parent 2665605856
commit 46b0e94e25
2 changed files with 4 additions and 8 deletions

View File

@ -30,7 +30,7 @@ lead: "Learn about the project's history, meet the maintaining teams, and find o
<div class="list-group-item"> <div class="list-group-item">
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user={{ member.user }}&amp;type=follow"></iframe> <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user={{ member.user }}&amp;type=follow"></iframe>
<a class="team-member" href="https://github.com/{{ member.user }}"> <a class="team-member" href="https://github.com/{{ member.user }}">
<img src="http://www.gravatar.com/avatar/{{ member.gravatar }}" alt="@{{ member.user }}"> <img src="http://www.gravatar.com/avatar/{{ member.gravatar }}" alt="@{{ member.user }}" width="32" height="32">
<strong>{{ member.name }}</strong> <small>@{{ member.user }}</small> <strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
</a> </a>
</div> </div>
@ -84,13 +84,13 @@ lead: "Learn about the project's history, meet the maintaining teams, and find o
<p>Download the Bootstrap mark in one of three styles, each available as an SVG file. Right click, Save as.</p> <p>Download the Bootstrap mark in one of three styles, each available as an SVG file. Right click, Save as.</p>
<div class="bs-brand-logos"> <div class="bs-brand-logos">
<div class="bs-brand-item"> <div class="bs-brand-item">
<img class="svg" src="../assets/brand/bootstrap-solid.svg" alt="Bootstrap"> <img class="svg" src="../assets/brand/bootstrap-solid.svg" alt="Bootstrap" width="144" height="144">
</div> </div>
<div class="bs-brand-item inverse"> <div class="bs-brand-item inverse">
<img class="svg" src="../assets/brand/bootstrap-outline.svg" alt="Bootstrap"> <img class="svg" src="../assets/brand/bootstrap-outline.svg" alt="Bootstrap" width="144" height="144">
</div> </div>
<div class="bs-brand-item inverse"> <div class="bs-brand-item inverse">
<img class="svg" src="../assets/brand/bootstrap-punchout.svg" alt="Bootstrap"> <img class="svg" src="../assets/brand/bootstrap-punchout.svg" alt="Bootstrap" width="144" height="144">
</div> </div>
</div> </div>

View File

@ -1459,10 +1459,6 @@ h1[id] {
color: #fff; color: #fff;
background-color: #563d7c; background-color: #563d7c;
} }
.bs-brand-item .svg {
width: 144px;
height: 144px;
}
/* Heading content within */ /* Heading content within */
.bs-brand-item h1, .bs-brand-item h1,