Commit 46b0e94e authored by XhmikosR's avatar XhmikosR

Specify `img` dimensions in the HTML.

parent 26656058
...@@ -30,7 +30,7 @@ lead: "Learn about the project's history, meet the maintaining teams, and find o ...@@ -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 ...@@ -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>
......
...@@ -1459,10 +1459,6 @@ h1[id] { ...@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment