Skip to content
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
34 changes: 30 additions & 4 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ table.darkTable tr:nth-child(even) {
}

table.darkTable thead {
background: #000000;
border-bottom: 3px solid #000000;
background: #1E1E1E;
border-bottom: 3px solid #1E1E1E;

}

Expand Down Expand Up @@ -415,7 +415,7 @@ table.darkTable #keywords{
font-weight: 700;
}

/* Contributors */
/* Contributor cards */

#contributors-title {
padding-top: 3rem;
Expand Down Expand Up @@ -482,7 +482,9 @@ table.darkTable #keywords{
gap: 10px;
}
.cont-info h4 {
font-size: 1.8rem;
color: #7a7a7a;
font-size: 1.7rem;
font-weight: 700;
}

.icons {
Expand Down Expand Up @@ -571,4 +573,28 @@ table.darkTable #keywords{
color: #2de6e2;
}

/* Footer */

footer {
background-color: lightgray;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-top: 2rem;
}

footer h2 {
font-weight: 500;
}

footer i {
font-size: 2rem;
}

hr {
border: #979797 solid 1px;
width: 80% ;
}


13 changes: 13 additions & 0 deletions views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,19 @@
</div>
</div>
</section>
<footer>
<h2>Thank You!</h2>

<br/>
<p>
- THE API ADMINISTRATION.<br><br>
<a href='https://github.com/the-api-administration' target='_blank'><i class="fa-brands fa-github"></i></a>
<br><br>
Bugs? Features? View this on <a href="https://github.com/the-api-administration/coding-resources-api" target='_blank'>GitHub</a>.
</p>
<hr>
<p>We would love to see what you are making with this API. Please tweet at us!</p>
</footer>
</div>
</body>
<script src="js/main.js"></script>
Expand Down