Skip to content

Commit

Permalink
add to styles
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsderp authored Dec 10, 2023
1 parent b02c580 commit c285811
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/playground/interface.css
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,34 @@ a {
}
[theme="dark"] .remixProject:hover {
background-color: rgba(0, 0, 0, 5%);
}
/* Donation Popup Styles */
.donationPopup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
border: 1px solid #ccc;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 9999;
text-align: center;
}

.donationPopup p {
margin-bottom: 10px;
}

.donationPopup button {
padding: 10px 20px;
background-color: #4caf50;
color: #fff;
border: none;
cursor: pointer;
font-size: 16px;
}

.donationPopup button:hover {
background-color: #45a049;
}

0 comments on commit c285811

Please sign in to comment.