Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
PythJScharm authored Mar 14, 2024
1 parent b2b2928 commit 7cbe9f4
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ a:hover {
margin-left: 2px;
margin-right: 2px;
}
.game-entry {
.project-entry {
border-radius: 10px;
background-color: var(--main-gray);
padding: 0.5em 1em;
Expand All @@ -116,32 +116,32 @@ a:hover {
display: flex;
flex-direction: column;
}
.game-thumbnail {
.project-thumbnail {
width: 64px;
height: 64px;
border-radius: 10px;
background-size: cover;
margin-right: 16px;
transition: transform 0.5s;
}
.game-thumbnail:hover {
.project-thumbnail:hover {
transform: scale(1.1);
}
.game-head {
.project-head {
display: flex;
flex-direction: row;
justify-content: start;
}
.game-links {
.project-links {
display: flex;
gap: 10px;
}
.game-footer {
.project-footer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.game-tags {
.project-tags {
display: flex;
flex-direction: row;
justify-content: end;
Expand Down Expand Up @@ -173,6 +173,10 @@ a:hover {
display: flex;
justify-content: center;
}

iframe{
padding: 1rem;
}
/* Responsive layout */
@media screen and (max-width: 600px) {
#top-bar {
Expand Down

0 comments on commit 7cbe9f4

Please sign in to comment.