Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed social media icons and unalign icons #1812

Merged
merged 1 commit into from
Nov 9, 2024
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
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ <h3>Sentence: </h3>
border-radius: 15px; /* Adds curved edges */
margin: 0 auto; /* Centers the element */
padding: 10px; /* Adds inner spacing */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds shadow for a
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);} /* Optional: adds shadow for a
}
.word-entry {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion start_writing.css
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ textarea#blogContent::placeholder {
}

.footer-container {
width: 90%;
width: 100%;
margin: 0 auto;
}

Expand Down
10 changes: 10 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3812,6 +3812,16 @@ h1 + p, p + p {
font-size: 20px; /* Adjust icon size */
padding: 0;
}
.post-tags #facebook,#instagram,#twitter,#dribbble,#github{
width: 50px; /* Ensure all icons are the same size */
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%; /* Make them circular */
font-size: 20px; /* Adjust icon size */
padding: 0;
}
#twitter:hover{
color: white;
background-color: #14171A;
Expand Down
Loading