pidgin/nest

Fix a wrapping error caused by Sublime Text's "Wrap at 80" function that I used
to wrap all this content.
<section class="supporters">
<b>{{ T "Our-Supporters" }}</b>
<div>
{{ range .Site.Data.supporters }}
<a href="{{ .url | safeHTMLAttr }}"> <img src="/images/badges/{{ .badge }}" /> </a> {{ end }}
</div>
</section>
<style>
.supporters {
background: #322a38;
padding: 7px;
text-align: center;
color: white;
border-radius: 15px;
}
.supporters a {
display: inline-block;
margin: 0 5px;
max-height: 40px;
max-width: 190px;
vertical-align: middle
}
.supporters img {
display: inline-block !important;
margin: 0 !important;
width: auto;
}
</style>