Fix padding on logos

This commit is contained in:
Nick Krichevsky 2020-01-08 21:04:37 -05:00
parent a870ee931f
commit 7d6dc672ab
2 changed files with 29 additions and 16 deletions

View file

@ -38,15 +38,28 @@ h6 {
margin-left: 100px; margin-left: 100px;
} }
div.main-logo {
margin-top: 16px;
}
.sponsors { .sponsors {
text-align: center; text-align: center;
display: block; display: block;
padding: 20px; padding: 20px;
} }
.sponsors > div {
margin-bottom: 40px;
}
.sponsors > div:last-child {
margin-bottom: 0;
}
.sponsors img { .sponsors img {
display: inline-block; display: inline-block;
margin-right: 40px; margin-right: 40px;
margin-bottom: 40px;
} }
.title-sponsors img{ .title-sponsors img{
max-height: 90px; max-height: 90px;

View file

@ -3,7 +3,7 @@
<div> <div>
<!--Logo + Date+ Hosted By --> <!--Logo + Date+ Hosted By -->
<div class="container"> <div class="container">
<div class="row center"> <div class="row center main-logo">
<img src="../static/img/hackwpilogo.png" alt="logo" style='height: 100%; width: 100%; object-fit: contain'/> <img src="../static/img/hackwpilogo.png" alt="logo" style='height: 100%; width: 100%; object-fit: contain'/>
</div> </div>
</div> </div>