Skip to content
Closed
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
17 changes: 14 additions & 3 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,19 @@ footer {
background-color: var(--p-grey);
}

footer h4 {
margin: 20px 0;


.sub-footer-heading {
margin: 25px 0;
padding-left: 20px;
font-weight: 500;
letter-spacing: 1px;
}

footer p {
.sub-footer-text {
text-align: justify;
font-weight: 400;
padding-left: 15px;
}

footer a:hover {
Expand All @@ -99,6 +104,11 @@ footer ul {

footer ul li a {
color: var(--s-grey);
padding-left: 15px;
}

.sub-footer{
border-top: 1px solid var(--s-grey);
}

.github-wrapper {
Expand Down Expand Up @@ -129,6 +139,7 @@ footer ul li a {

.fab:hover {
transform: scale(1.3);
color: var(--p-orange);

/* TEXT */
.p-orange {
Expand Down
153 changes: 79 additions & 74 deletions templates/includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,74 +1,79 @@
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-3">
<h4>Policies</h4>
<ul>
<li>
<!-- To link to own Privacy Policy page once built -->
<a href="{% url 'privacy_policy' %}" target=" _blank">Privacy Policy</a>
</li>
<li>
<!-- To link to own Plagiarism Policy page once built -->
<a href="{% url 'plagiarism_policy' %}" target="_blank">Plagiarism Policy</a>
</li>
<li>
<a href="https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-terms-of-service"
target="_blank">GitHub Terms of Service</a>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-3">
<h4>
Resources
</h4>
<ul>
<li>
<a href="{% url 'faq' %}">FAQ</a>
</li>
<li>
<a href="{% url 'judging_criteria' %}">Judging Criteria</a>
</li>
<li>
<a href="{% url 'useful_resources' %}">Useful Resources</a>
</li>
<li>
<a href="https://codeinstitute.net/">Code Institute</a>
</li>
<li>
<a href="https://hacktoberfest.digitalocean.com/" target="_blank">Hacktoberfest Official Site</a>
</li>
</ul>
</div>
<div class="col-md-6">
<h4>
About Us
</h4>
<p>
Code Institute is the leading global provider
of online coding education. Credit-rated by Edinburgh Napier University and validated by the Higher
Education Authority in Sweden, the Ministry of Communications in Singapore, and the Higher Education
Authority in Ireland.
</p>
</div>
<hr>
<div class="col github-wrapper">
<a href="https://www.facebook.com/Code.InstituteIRL/" target="_blank">
<i class="fab fa-facebook-square"></i>
</a>
<a href="https://twitter.com/codersinstitute" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
<a href="https://www.linkedin.com/school/code-institute/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/Code-Institute-Community/ci-hackathon-app" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div class="col copyright-wrapper">
<p>
<a href="https://codeinstitute.net/" target=" _blank">&copy; 2020 Code Institute</a>
</p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 ">
<h4 class="sub-footer-heading">
About Us
</h4>
<p class="sub-footer-text">
Code Institute is the leading global provider
of online coding education. Credit-rated by Edinburgh Napier University and validated by the Higher
Education Authority in Sweden, the Ministry of Communications in Singapore, and the Higher Education
Authority in Ireland.
</p>
</div>
<div class="col-md-3 ">
<h4 class="sub-footer-heading">
Resources
</h4>
<ul class="sub-footer-text">
<li>
<a href="{% url 'faq' %}">FAQ</a>
</li>
<li>
<a href="{% url 'judging_criteria' %}">Judging Criteria</a>
</li>
<li>
<a href="{% url 'useful_resources' %}">Useful Resources</a>
</li>
<li>
<a href="https://codeinstitute.net/">Code Institute</a>
</li>
<li>
<a href="https://hacktoberfest.digitalocean.com/" target="_blank">Hacktoberfest Official
Site</a>
</li>
</ul>
</div>
<div class="col-md-3 ">
<h4 class="sub-footer-heading">Policies</h4>
<ul class="sub-footer-text">
<li>
<!-- To link to own Privacy Policy page once built -->
<a href="{% url 'privacy_policy' %}" target=" _blank">Privacy Policy</a>
</li>
<li>
<!-- To link to own Plagiarism Policy page once built -->
<a href="{% url 'plagiarism_policy' %}" target="_blank">Plagiarism Policy</a>
</li>
<li>
<a href="https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-terms-of-service"
target="_blank">GitHub Terms of Service</a>
</li>
</ul>
</div>
</div>

<div class="row">
<div class="col github-wrapper">
<a href="https://www.facebook.com/Code.InstituteIRL/" target="_blank">
<i class="fab fa-facebook-square"></i>
</a>
<a href="https://twitter.com/codersinstitute" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
<a href="https://www.linkedin.com/school/code-institute/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/Code-Institute-Community/ci-hackathon-app" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div class="row sub-footer">
<div class="col copyright-wrapper">
<p>
<a href="https://codeinstitute.net/" target=" _blank">&copy; 2020 Code Institute</a>
</p>
</div>
</div>
</div>