-
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.
- Loading branch information
1 parent
bdf93fb
commit 9c11189
Showing
11 changed files
with
262 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
|
||
:root { | ||
--primary-color: rgb(119, 13, 30); | ||
--light-color: #FFF; | ||
--dark-color: #181920; | ||
--text-color: #8B8E94; | ||
--black: #000; | ||
--secondary-bg: #E5EAFF; | ||
--footer-bg: #1D1D1D; | ||
} | ||
|
||
/* Footer styles */ | ||
footer { | ||
background-color: #333; | ||
color: var(--text-color); | ||
padding: 5rem 2rem; | ||
margin: 0; | ||
padding: 0; | ||
|
||
border: 0; | ||
|
||
vertical-align: baseline; | ||
|
||
list-style: none; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Footer container styles */ | ||
.footer-container { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
/* Mobile styles for footer container */ | ||
@media only screen and (max-width: 768px) { | ||
.footer-container { | ||
max-width: 100%; | ||
flex-direction: column; | ||
} | ||
} | ||
|
||
/* Footer title styles */ | ||
.footer-container .footer-title { | ||
color: #FFF; | ||
font-weight: bold; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
/* Footer description and links container styles */ | ||
.footer-container .footer-desc-container, | ||
.footer-container .footer-links-container { | ||
width: 50%; | ||
} | ||
|
||
/* Mobile styles for footer description and links container */ | ||
@media only screen and (max-width: 768px) { | ||
|
||
.footer-container .footer-desc-container, | ||
.footer-container .footer-links-container { | ||
width: 100%; | ||
margin-bottom: 2rem; | ||
text-align: center; | ||
} | ||
} | ||
|
||
/* Footer description container styles */ | ||
.footer-container .footer-desc-container p { | ||
width: 80%; | ||
line-height: 1.3; | ||
} | ||
|
||
/* Mobile styles for footer description container */ | ||
@media only screen and (max-width: 768px) { | ||
.footer-container .footer-desc-container p { | ||
width: 100%; | ||
} | ||
} | ||
|
||
/* Footer links container styles */ | ||
.footer-container .footer-links-container ul { | ||
padding: 0 1rem; | ||
} | ||
|
||
/* Mobile styles for footer links container */ | ||
@media only screen and (max-width: 768px) { | ||
.footer-container .footer-links-container ul { | ||
margin-bottom: 2rem; | ||
} | ||
} | ||
|
||
/* Footer list item styles */ | ||
.footer-container .footer-links-container li { | ||
margin-bottom: .5rem; | ||
} | ||
|
||
/* Footer link styles */ | ||
.footer-container .footer-links-container a { | ||
color: var(--text-color); | ||
transition: .5s; | ||
} | ||
|
||
/* Hover effect styles for footer links */ | ||
.footer-container .footer-links-container a:hover { | ||
color: #FFF; | ||
} | ||
|
||
/* Footer copyright container styles */ | ||
.footer-container .footer-copy-right-container { | ||
width: 100%; | ||
margin-top: 3rem; | ||
} | ||
|
||
/* Mobile styles for footer copyright container */ | ||
@media only screen and (max-width: 768px) { | ||
.footer-container .footer-copy-right-container { | ||
text-align: center; | ||
} | ||
} | ||
|
||
/* Paragraph styles for footer copyright container */ | ||
.footer-container .footer-copy-right-container p { | ||
margin-bottom: 1rem; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.