Moved footer styling to main CSS

This commit is contained in:
Thomas Smith 2022-09-13 13:40:19 -04:00
parent 7e5cee39bb
commit 995a0d89a2
2 changed files with 40 additions and 43 deletions

View file

@ -34,49 +34,6 @@
</div> </div>
</section> </section>
<style>
.footer-email{
padding: 35px 75px;
background: none;
border: none;
}
.social-box{
border-radius: 0px !important;
border: 2px solid #949494;
background-color: none;
}
.list-group{
border-radius: 0px !important;
}
.list-group-item{
background-color: #1a1a1a !important;
padding: 20px;
font-size: 28px;
color: #fff;
font-family: "pp-neue-machina", sans-serif;
text-transform: uppercase;
border-bottom: 2px solid #949494;
transition: 0.2s ease-in-out;
}
.list-group-item:hover{
padding-left: 40px;
background-color: #00ffd0 !important;
box-shadow: inset 0px 0px 0px 7px #1a1a1a !important;
color: #1a1a1a !important;
}
.footer-content{
padding-right: 100px;
}
</style>
<!-- JavaScript Bundle with Popper --> <!-- JavaScript Bundle with Popper -->

View file

@ -280,3 +280,43 @@ hr{
.detail-btn{ .detail-btn{
float:right; float:right;
} }
/* Footer Styling */
.footer-email{
padding: 35px 75px;
background: none;
border: none;
}
.social-box{
border-radius: 0px !important;
border: 2px solid #949494;
background-color: none;
}
.list-group{
border-radius: 0px !important;
}
.list-group-item{
background-color: #1a1a1a !important;
padding: 20px;
font-size: 28px;
color: #fff;
font-family: "pp-neue-machina", sans-serif;
text-transform: uppercase;
border-bottom: 2px solid #949494;
transition: 0.2s ease-in-out;
}
.list-group-item:hover{
padding-left: 40px;
background-color: #00ffd0 !important;
box-shadow: inset 0px 0px 0px 7px #1a1a1a !important;
color: #1a1a1a !important;
}
.footer-content{
padding-right: 100px;
}