Skip to content

Commit

Permalink
Update style.css - Added style for projects
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyshawkins authored Dec 23, 2023
1 parent 47e6fae commit 21fab92
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ img {
font-family: 'Playfair Display';
font-weight: bold;
margin-bottom: 20px;
text-align: center;
}

.description, .description-footer {
Expand All @@ -85,3 +86,41 @@ img {
a:hover {
background-color: #e69494;
}

.proj-name {
font-family: 'Space Mono';
font-size: 15px;
font-weight: bold;
margin: 0px 0px 20px 0px;
}

.proj-description {
font-family: 'Space Mono';
font-size: 15px;
margin: 0px 0px 0px 0px;
}

.project {
background-color: #FFEAEA;
width: 750px;
height: 300px;
border-radius: 50px;
margin-top: 20px;
margin-bottom: 20px;
display: grid;
grid-template-columns: 58% 42%;
}

.proj-img {
width: 300px;
border-radius: 30px;
}

.proj-link {
transition: transform .2s;
}

.proj-link:hover {
transform: scale(1.1);
background-color: #ffffff00;
}

0 comments on commit 21fab92

Please sign in to comment.