-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uconn header, uconn footer, react update for banner logic
- Loading branch information
Showing
11 changed files
with
233 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import './UConnFooter.scss'; | ||
|
||
function UConnFooter() { | ||
|
||
return ( | ||
<> | ||
<div id="footers"> | ||
<footer id="footer" className="site-footer" role="contentinfo"> | ||
<div className="container"> | ||
<ul id="uc-footer-links" className="clearfix"> | ||
<li> | ||
<span>©</span> <a href="http://uconn.edu">University of Connecticut</a> | ||
</li> | ||
<li> | ||
<a href="http://uconn.edu/disclaimers-privacy-copyright/"> | ||
Disclaimers, Privacy & Copyright | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://accessibility.uconn.edu/">Accessibility</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</div> | ||
</> | ||
); | ||
} | ||
|
||
export default UConnFooter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#footers { | ||
background-color: #010d2f; | ||
margin: 0 !important; | ||
border-top: none !important; | ||
a, p, span { | ||
color: #FFF; | ||
} | ||
border-bottom: 5px solid #053c7f; | ||
padding: 60px 0px; | ||
} | ||
|
||
#footers #footer { | ||
color: #111; | ||
padding: 0px; | ||
} | ||
#footers #footer ul { | ||
text-align: center; | ||
margin-bottom: 0px; | ||
} | ||
#footers #footer ul li { | ||
padding-left: 1.5em; | ||
display: inline-block; | ||
margin-bottom: 0px; | ||
} | ||
@media (max-width: 780px) { | ||
#footers #footer ul li { | ||
display: inline-block; | ||
margin-bottom: 10px; | ||
padding-left: 0px; | ||
} | ||
} | ||
#footers #footer ul li a { | ||
padding: 0px; | ||
} | ||
#footers #footer ul li a:active, #footers #footer ul li a:hover, #footers #footer ul li a:focus { | ||
color: #ddd; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.