Skip to content

Commit

Permalink
email update
Browse files Browse the repository at this point in the history
  • Loading branch information
davehornik committed Sep 15, 2024
1 parent c5cad8a commit e12096d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,22 +104,22 @@ progress {
grid-area: my-projects;
display: flex;
flex-direction: row;
flex-wrap: wrap; /* Allow projects to wrap if needed */
justify-content: center; /* Center the projects */
align-items: flex-start; /* Align the top of each project */
gap: 20px; /* Add some space between the projects */
width: 100%; /* Make sure the container uses full width */
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
gap: 20px;
width: 100%;
}

.project {
width: 300px; /* Fixed width */
width: 300px;
display: flex;
flex-direction: column; /* Align the content inside the project vertically */
flex-grow: 0; /* Prevent growing */
flex-shrink: 0; /* Prevent shrinking */
flex-direction: column;
flex-grow: 0;
flex-shrink: 0;
align-self: auto;
order: 0;
text-align: center; /* Center text and content inside project */
text-align: center;
}
.project img {
width: 300px;}
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ <h3>Other Skills</h3>
</div>
</div>
<div class="get-in-touch">
<a href="mailto:[email protected]">E-mail</a>
<a href="https://github.com/davehornik">GitHub</a>
<a href="mailto:[email protected]">E-mail: [email protected]</a>
<a href="https://github.com/davehornik">GitHub - davehornik</a>
<a href="www.linkedin.com/in/davehornik">LinkedIn</a>
<a href="https://stackoverflow.com/users/12027148/davehornik">Stack Overflow</a>
</div>
Expand Down

0 comments on commit e12096d

Please sign in to comment.