Skip to content

Commit

Permalink
Merge pull request #54 from Arceen/Arceen
Browse files Browse the repository at this point in the history
Activate donate now button
  • Loading branch information
Virtual4087 authored Oct 22, 2023
2 parents d5f8795 + 85290ae commit 10c1c34
Show file tree
Hide file tree
Showing 2 changed files with 287 additions and 220 deletions.
64 changes: 63 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
color: green;
}


.menu-button {
cursor: pointer;
background: transparent;
Expand Down Expand Up @@ -795,3 +794,66 @@ nav .nav_buttons {
.socialmediaName:hover {
color: #ffffff;
}

.hidden {
display: none;
}

#overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value as needed */
z-index: 1;
}

#popup {
position: fixed;
z-index: 2;
top: 50%;
left: 50%;
height: 160px;
width: 300px;
transform: translate(-50%, -50%);
background-color: #fffd;
border: 1px solid #ccc;
border-radius: 10px;
padding: 20px;
font-family: "Poppins", sans-serif;
transition: 0.2s;

box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
#popup p {
margin: 20px auto;
text-align: center;
}
#popup button {
--color_2: #111111;
color: #111111;
background: none;
font-family: "Poppins", sans-serif;
font-size: 16px;
width: 150px;
letter-spacing: 1px;
cursor: pointer;
padding: 15px 25px;

margin: auto;
margin-top: 40px;
border: 1px solid var(--color_2);
transition: 0.5s;
position: relative;
overflow: hidden;
}
#popup button:hover {
transform: scale(1.1);
color: white;
background: black;
}
#closePopupButton {
display: block;
margin-top: 10px;
}
Loading

0 comments on commit 10c1c34

Please sign in to comment.