-
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.
Merge pull request #5 from RocketPy-Team/add-footer
Add footer to the page
- Loading branch information
Showing
10 changed files
with
351 additions
and
76 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 @@ | ||
/*! | ||
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com | ||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) | ||
* Copyright 2024 Fonticons, Inc. | ||
*/ | ||
:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,191 @@ | ||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700); | ||
|
||
* { | ||
font-family: Open Sans; | ||
} | ||
|
||
.footer-distributed { | ||
bottom: 0; | ||
min-width: 100%; | ||
border-top: solid 0.5rem rgba(33, 35, 50, 0.80); | ||
background: rgba(3, 11, 40, 1); | ||
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); | ||
box-sizing: border-box; | ||
width: 100%; | ||
text-align: left; | ||
font: bold 16px sans-serif; | ||
padding: 55px 50px; | ||
margin-top: auto; | ||
} | ||
|
||
.footer-distributed .footer-left, | ||
.footer-distributed .footer-center, | ||
.footer-distributed .footer-right { | ||
display: inline-block; | ||
vertical-align: top; | ||
} | ||
|
||
/* Footer left */ | ||
|
||
.footer-distributed .footer-left { | ||
width: 40%; | ||
} | ||
|
||
/* The company logo */ | ||
|
||
.footer-distributed h3 { | ||
color: #ffffff; | ||
font: normal 36px 'Open Sans', cursive; | ||
margin: 0; | ||
} | ||
|
||
.footer-distributed h3 span { | ||
color: lightseagreen; | ||
} | ||
|
||
/* Footer links */ | ||
|
||
.footer-distributed .footer-links { | ||
color: #ffffff; | ||
margin: 20px 0 12px; | ||
padding: 0; | ||
} | ||
|
||
.footer-distributed .footer-links a { | ||
display: inline-block; | ||
line-height: 1.8; | ||
font-weight: 400; | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
.footer-distributed .footer-company-name { | ||
color: #222; | ||
font-size: 14px; | ||
font-weight: normal; | ||
margin: 0; | ||
} | ||
|
||
/* Footer Center */ | ||
|
||
.footer-distributed .footer-center { | ||
width: 35%; | ||
} | ||
|
||
.footer-distributed .footer-center i { | ||
background-color: #33383b; | ||
color: #ffffff; | ||
font-size: 25px; | ||
width: 38px; | ||
height: 38px; | ||
border-radius: 50%; | ||
text-align: center; | ||
line-height: 42px; | ||
margin: 10px 15px; | ||
vertical-align: middle; | ||
} | ||
|
||
.footer-distributed .footer-center i.fa-envelope { | ||
font-size: 17px; | ||
line-height: 38px; | ||
} | ||
|
||
.footer-distributed .footer-center p { | ||
display: inline-block; | ||
color: #ffffff; | ||
font-weight: 400; | ||
vertical-align: middle; | ||
margin: 0; | ||
} | ||
|
||
.footer-distributed .footer-center p span { | ||
display: block; | ||
font-weight: normal; | ||
font-size: 14px; | ||
line-height: 2; | ||
} | ||
|
||
.footer-distributed .footer-center p a { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
|
||
.footer-distributed .footer-links a:before { | ||
content: "|"; | ||
font-weight: 300; | ||
font-size: 20px; | ||
left: 0; | ||
color: #fff; | ||
display: inline-block; | ||
padding-right: 5px; | ||
} | ||
|
||
.footer-distributed .footer-links .link-1:before { | ||
content: none; | ||
} | ||
|
||
/* Footer Right */ | ||
|
||
.footer-distributed .footer-right { | ||
width: 20%; | ||
} | ||
|
||
.footer-distributed .footer-company-about { | ||
line-height: 20px; | ||
color: #92999f; | ||
font-size: 13px; | ||
font-weight: normal; | ||
margin: 0; | ||
} | ||
|
||
.footer-distributed .footer-company-about span { | ||
display: block; | ||
color: #ffffff; | ||
font-size: 14px; | ||
font-weight: bold; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.footer-distributed .footer-icons { | ||
margin-top: 25px; | ||
} | ||
|
||
.footer-distributed .footer-icons a { | ||
display: inline-block; | ||
width: 35px; | ||
height: 35px; | ||
cursor: pointer; | ||
background-color: #33383b; | ||
border-radius: 2px; | ||
|
||
font-size: 20px; | ||
color: #ffffff; | ||
text-align: center; | ||
line-height: 35px; | ||
|
||
margin-right: 3px; | ||
margin-bottom: 5px; | ||
} | ||
|
||
/* If you don't want the footer to be responsive, remove these media queries */ | ||
|
||
@media (max-width: 880px) { | ||
|
||
.footer-distributed { | ||
font: bold 14px sans-serif; | ||
} | ||
|
||
.footer-distributed .footer-left, | ||
.footer-distributed .footer-center, | ||
.footer-distributed .footer-right { | ||
display: block; | ||
width: 100%; | ||
margin-bottom: 40px; | ||
text-align: center; | ||
} | ||
|
||
.footer-distributed .footer-center i { | ||
margin-left: 0; | ||
} | ||
|
||
} |
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.