Skip to content
This repository was archived by the owner on Oct 29, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,62 +93,60 @@ header.header {
}

div.sponsor-wrapper {
margin: 0 auto;
margin: 1rem auto;
float: none;
width: 125px;
clear: both; // Accounts for floating scholarship callout above div.sponsor-wrapper

@include media($tablet) {
overflow: hidden;
float: right;
width: 200px;
margin: 0;
width: auto;
position: absolute;
right: 0;
bottom: 0;
}

// Sponsor logo and "Powered By"
img,
.copy {
display: inline-block;
float: left;
}

img {
width: 50px;
display: block;
height: 50px;
margin: 0 auto;

@include media($tablet) {
font-size: $font-regular;
width: 100px;
height: 100px;
float: right;
margin: 0;
}
}

.copy {
color: #fff;
padding: 15px 0 0;
p.copy {
margin: 0 0 1rem 0;
padding: 0;
float: none;
font-size: $font-small;
width: 70px;
height: 50px;
font-weight: $weight-bold;
text-align: center;
text-transform: uppercase;

@include rgba(color, #fff, 0.7);

@include media($tablet) {
font-size: $font-regular;
margin: 0;
width: 100px;
height: 100px;
line-height: 100px;
padding: 0 0.5rem 0 0;
position: relative;
bottom: -1.8rem;
float: left;
}
}
}

.scholarship-wrapper {
div.scholarship-wrapper {
width: 200px;
margin: 20px auto 0;
padding: 0 0 2rem 0;
position: relative;

@include media($tablet) {
width: 130px;
margin: -10px 0 0 15px;
padding: 0;
float: left;

@include transform(rotate(-6deg));
Expand All @@ -164,6 +162,7 @@ header.header {
float: right;
position: relative;
right: -40px;
margin: 0;

@include media($tablet) {
float: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<?php if (isset($sponsors[0]['display'])): ?>
<div class="sponsor-wrapper">
<p class="copy">Powered by:</p>
<p class="copy">Powered by</p>
<?php foreach ($sponsors as $key => $sponsor) :?>
<?php if (isset($sponsor['display'])): print $sponsor['display']; endif; ?>
<?php endforeach; ?>
Expand Down