Skip to content

Commit

Permalink
Fixes Sponsors & Other small inprovements (#599)
Browse files Browse the repository at this point in the history
* Updates

* Fixed Links Opening in new tab
  • Loading branch information
1ceit committed Mar 1, 2024
1 parent 33a49ae commit 37a93ea
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 14 deletions.
5 changes: 5 additions & 0 deletions Gemfile.lock
Expand Up @@ -39,6 +39,7 @@ GEM
faraday-net_http (3.1.0)
net-http
ffi (1.16.3)
ffi (1.16.3-x64-mingw-ucrt)
forwardable-extended (2.6.0)
gemoji (3.0.1)
github-pages (228)
Expand Down Expand Up @@ -225,6 +226,8 @@ GEM
uri
nokogiri (1.16.2-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.2-x64-mingw-ucrt)
racc (~> 1.4)
nokogiri (1.16.2-x86_64-linux)
racc (~> 1.4)
octokit (4.25.1)
Expand Down Expand Up @@ -261,13 +264,15 @@ GEM
unf (0.1.4)
unf_ext
unf_ext (0.0.9.1)
unf_ext (0.0.9.1-x64-mingw-ucrt)
unicode-display_width (1.8.0)
uri (0.13.0)
webrick (1.8.1)

PLATFORMS
arm64-darwin-20
arm64-darwin-21
x64-mingw-ucrt
x86_64-linux

DEPENDENCIES
Expand Down
18 changes: 8 additions & 10 deletions _includes/footer.html
Expand Up @@ -5,16 +5,14 @@ <h5>We love our sponsors!</h5>
<table>
<tbody>
<tr>
<td><a href="http://www.fcedf.org/"><img class="sponsor-large" target="_blank" src="/images/sponsors/fcef.svg"></a></td>
<td><a href="http://fccps.org"><img target="_blank" src="/images/sponsors/fccps.svg"></a></td>
<td><a href="http://fccps.org/gm"><img class="sponsor-large" target="_blank" src="/images/sponsors/george-mason.svg"></a></td>
<td><a href="http://dixiesheetmetalworks.com/"><img target="_blank" src="/images/sponsors/dixie-metal.png"></a></td>
<td><a href="https://www.codeninjas.com/locations/va-falls-church"><img target="_blank" src="/images/sponsors/code-ninjas.svg"></a></td>
<td><a href="https://www.themcguiregroupllc.com/"><img class="sponsor-medium" target="_blank" src="/images/sponsors/tmg.svg"></a></td>
<td><a href="http://www.baroodycamps.com/"><img target="_blank" src="/images/sponsors/baroodycamps.png"></a></td>
<td><a href="https://ghaasfoundation.org/"><img target="_blank" src="/images/sponsors/gene-haas-foundation.png"></a></td>
<td><a href="https://krobothconsulting.com/"><img target="_blank" src="/images/sponsors/kroboth-consulting.png"></a></td>
<td><a href="https://andworx.com/"><img target="_blank" src="/images/sponsors/andworx.png"></a></td>
<td><a href="http://www.fcedf.org/" target="_blank"><img class="sponsor-large" src="/images/sponsors/fcef.svg"></a></td>
<td><a href="http://fccps.org" target="_blank"><img src="/images/sponsors/fccps.svg"></a></td>
<td><a href="http://fccps.org/gm" target="_blank"><img class="sponsor-large" src="/images/sponsors/george-mason.svg"></a></td>
<td><a href="http://www.baroodycamps.com/ " target="_blank"><img src="/images/sponsors/baroodycamps.png"></a></td>
<td><a href="https://ghaasfoundation.org/" target="_blank"><img src="/images/sponsors/gene-haas-foundation.png"></a></td>
<td><a href="https://krobothconsulting.com/" target="_blank"><img src="/images/sponsors/kroboth-consulting.png"></a></td>
<td><a href="https://aws.amazon.com/partners/marketing/sponsorships/?global-event-sponsorship-cards.sort-by=item.additionalFields.customSortOrder&global-event-sponsorship-cards.sort-order=asc" target="_blank"><img target="_blank" src="/images/sponsors/amazon.png"></a></td>

<td><img src="/images/sponsors/families.png"></td>
</tr>
</tbody>
Expand Down
4 changes: 2 additions & 2 deletions css/banners.sass
Expand Up @@ -17,7 +17,7 @@
margin: 0 3px 30px
width: 120px
position: relative
background: #0f4bcb
background: #d12727
color: white
padding: 10px
img
Expand All @@ -28,7 +28,7 @@
content: ''
position: absolute
display: block
border: 60px solid #0f4bcb
border: 60px solid #d12727
border-top-width: 5px
border-bottom: 20px transparent solid
top: 100%
Expand Down
2 changes: 1 addition & 1 deletion css/grid.sass
Expand Up @@ -30,7 +30,7 @@ footer h5

p.label
color: #ffffff
background-color: #d12727
background-color: #2738d1
font-family: Adam
font-size: 15px
text-align: center
Expand Down
6 changes: 6 additions & 0 deletions css/main.sass
Expand Up @@ -228,6 +228,7 @@ nav
z-index: 100
ul, li
position: relative
border-radius: 10px
ul
list-style: none
> ul
Expand All @@ -237,6 +238,7 @@ nav
display: block
color: white
padding: 12px 15px

span
color: #ccc
cursor: default
Expand All @@ -245,10 +247,13 @@ nav
padding: 0
&:hover
background: #444
border-radius: 8px
.active
background: #222
border-radius: 8px
&:hover
background: #222
border-radius: 8px
a
color: #ddd
cursor: default
Expand Down Expand Up @@ -280,6 +285,7 @@ nav
text-decoration: none
background: $vaered
color: white
border-radius: 7px

main
padding: 40px
Expand Down
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -23,7 +23,7 @@
<div class="jumbotron">
<h1 id="welcome">Welcome!</h1>
<h3>Striving for student enrichment, technical advancement, and success in the FIRST Robotics Competition.</h3>
<a href="/robot/2022" class="button">View our 2022 Robot</a>
<a href="/robot/2023" class="button">View our 2023 Robot</a>
</div>
<main>
<div>
Expand Down

0 comments on commit 37a93ea

Please sign in to comment.