Skip to content

Commit

Permalink
styles
Browse files Browse the repository at this point in the history
  • Loading branch information
SquareScreamYT committed Jul 23, 2024
1 parent 8bd028e commit 6799058
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions kotobalibre/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -299,18 +299,18 @@ img {
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
background-color: rgba(0,0,0,0.3);
}

.alert-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #f1f1f1;
background-color: var(--bg-color);
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
box-shadow: 0;
text-align: center;
max-width: 80%;
width: 300px;
Expand All @@ -327,8 +327,8 @@ img {
}

#closeAlert {
background-color: #4CAF50;
color: white;
background-color: var(--bg-color-darker);
color: var(--text-color);
border: none;
padding: 8px 16px;
text-align: center;
Expand All @@ -338,4 +338,8 @@ img {
margin: 4px 2px;
cursor: pointer;
border-radius: 3px;
transition: background-color 0.3s ease;
}
#closeAlert:hover {
background-color: var(--bg-color-darkest);
}

0 comments on commit 6799058

Please sign in to comment.