-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from kairi003/release/v0.5.0
Release/v0.5.0
- Loading branch information
Showing
8 changed files
with
118 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* summary styles */ | ||
.donation details summary { | ||
width: fit-content; | ||
outline: none; | ||
text-decoration: underline; | ||
cursor: pointer; | ||
font-weight: bold; | ||
} | ||
|
||
.donation details summary:hover { | ||
outline: none; | ||
box-shadow: 0 0 5px rgba(0, 128, 255, 0.5); | ||
} | ||
|
||
/* donation description styles */ | ||
.donation-description p { | ||
margin-block-start: 0.5em; | ||
margin-block-end: 0.5em; | ||
} | ||
|
||
/* payment button container styles */ | ||
.donation .payment-buttons-container { | ||
display: flex; | ||
gap: 10px; | ||
padding: 0; | ||
list-style-type: none; | ||
justify-content: center; | ||
margin-top: 15px; | ||
text-decoration: none; | ||
} | ||
|
||
/* payment button styles */ | ||
.donation .payment-button { | ||
display: flex; | ||
align-items: center; | ||
padding: 5px 10px; | ||
background-color: #aaedad; | ||
color: #333; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); | ||
transition: filter 0.3s; | ||
} | ||
|
||
.donation .payment-button:hover { | ||
filter: brightness(0.8); | ||
} | ||
|
||
.donation .payment-button img { | ||
margin-right: 5px; | ||
height: 20px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.option-container { | ||
display: flex; | ||
justify-content: flex-start; | ||
align-items: center; | ||
width: 100%; | ||
gap: 1em; | ||
} | ||
|
||
.option { | ||
display: flex; | ||
align-items: stretch; | ||
gap: 0.5em; | ||
} | ||
|
||
.netscape-table.nowrap { | ||
white-space: nowrap; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
document.querySelector('#nowrapOption').addEventListener('change', e => { | ||
document.querySelector('#netscapeTable').classList.toggle('nowrap'); | ||
}); |