Skip to content

Commit

Permalink
Update Footer.css
Browse files Browse the repository at this point in the history
  • Loading branch information
MastanSayyad committed Jul 13, 2024
1 parent 585d647 commit f640cbe
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions src/components/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -290,3 +290,67 @@ a:hover {
}


.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
animation: fadeIn 0.5s;
}

.modal-content {
background: rgb(255, 255, 255);
padding: 20px;
border-radius: 8px;
text-align: center;
animation: fadeIn 0.5s;
}

.modal-content h2 {
margin-top: 0;
color: #072183;
font-weight: bold;
}

.modal-content p {
color: #000000;
}


.modal-content button {
background: #093eba;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
}

.modal-content button:hover {
background: #05286f;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}

0 comments on commit f640cbe

Please sign in to comment.