-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I have added some description about the website, added subscribe button and changed the social media icons and added some hover effects to it.
- Loading branch information
1 parent
291e5d7
commit 0c30c6e
Showing
2 changed files
with
76 additions
and
18 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 |
---|---|---|
@@ -1,24 +1,63 @@ | ||
|
||
footer { | ||
position: fixed; | ||
background-color: black; | ||
background-color: rgb(15, 15, 17); | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
padding: 8px; | ||
text-align: center; | ||
width: 100%; | ||
|
||
border-top: 2px solid white; | ||
padding: 16px; | ||
text-align: center; | ||
border-top: 1px solid silver; | ||
} | ||
.foot-left h1{ | ||
color: rgb(162, 112, 208); | ||
} | ||
.social-section { | ||
.foot{ | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-around; | ||
text-align: left; | ||
} | ||
.foot-left{ | ||
width: 50%; | ||
} | ||
p{ | ||
text-align: justify; | ||
} | ||
.social{ | ||
margin-top: 80px; | ||
} | ||
.social-section{ | ||
margin-top: 20px; | ||
} | ||
.social ul li { | ||
display: inline; | ||
padding-left: 30px; | ||
margin: 10px 10px; | ||
} | ||
.social ul li:hover svg { | ||
fill: hsl(184, 41%, 36%); | ||
} | ||
.row-flex { | ||
text-align: right; | ||
} | ||
.shoutout { | ||
padding-right: 5px; | ||
input[type="email"] { | ||
padding: 8px; | ||
margin-right: 8px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
width: 300px; | ||
} | ||
|
||
input[type="submit"] { | ||
padding: 8px 16px; | ||
border: none; | ||
background-color: hsl(184, 41%, 56%); | ||
color: white; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
} | ||
|
||
input[type="submit"]:hover { | ||
background-color: hsl(184, 41%, 46%); | ||
} |
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