Skip to content
This repository was archived by the owner on Mar 1, 2021. It is now read-only.
Open
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
23 changes: 21 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ body {
box-sizing: border-box;
color: #333333b3;
/* background: linear-gradient(to bottom right, #ffded1 0%,#ffded1 50%,#ffc5af 50%,#ffc5af 100%); */
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}

html, body {
Expand Down Expand Up @@ -71,10 +71,29 @@ div.grid {
div.grid-item {
margin-bottom: 20px;
margin-top: 10px;
transition: box-shadow .3s ease-in;
}

div.grid-item:hover {
box-shadow: 0 1px 25px 2px rgba(0,0,0,0.2);
border-radius: 5px;
}

div.grid-item a {
display: inline-block;
width: 100%;
height: 100%;
}

div.grid-item img {
transition: transform .5s ease-in;
}

div.grid-item:hover img {
transform: scale(1.5);
}

.language-name:hover{
border-bottom: 3px solid #1b6568;
transition-duration: 100ms;
}