Skip to content

Commit

Permalink
Merge pull request #1413 from Rupa-Rd/Rupa-rd
Browse files Browse the repository at this point in the history
Project description placeholder is added
  • Loading branch information
swapnilsparsh committed May 29, 2024
2 parents 82f5036 + e660b2c commit b49157a
Show file tree
Hide file tree
Showing 2 changed files with 692 additions and 7 deletions.
33 changes: 32 additions & 1 deletion 30DaysOfJavaScript/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ a:visited {
flex: 50%;
width: 90%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
background-color: rgba(23, 22, 22, 0.4);
box-shadow: 0 0 transparent, 0 0 transparent, 0 0 transparent, 0 0 transparent,
0 2px 3px 0 rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
border-radius: 10px;
Expand All @@ -225,6 +225,37 @@ a:visited {
text-align: left;
}

.description{
width: 100%;
height: 80%;
top: 0;
left: 0;
background-color: #2d3436;
background-image: linear-gradient(315deg, #2d3436 0%, #000000 74%);
display: none;
position: absolute;
overflow: hidden;
justify-content: center;
align-items: center;
flex-direction: column;
opacity: 0;
/* transition: transform 0.9s ease-in-out 0s; */
color: #fff;
padding: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

.description p{
margin: 5px 10px 5px 10px;
}

.item:hover .description{
display: flex;
opacity: 1;
overflow: hidden;
}

.main {
/* padding: 20px;
width: 90vw; */
Expand Down
Loading

0 comments on commit b49157a

Please sign in to comment.