donate/styles.css

154 lines
2.3 KiB
CSS
Raw Normal View History

2024-08-22 22:12:36 +08:00
body {
2024-08-22 22:49:04 +08:00
font-family: Microsoft YaHei;
font-weight: bold;
2024-08-22 23:17:12 +08:00
background-image: url("img/bg.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
2024-08-22 22:12:36 +08:00
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
2024-08-22 23:17:12 +08:00
z-index: 1;
background-color: rgba(255, 255, 255, 0.5);
2024-08-22 23:17:12 +08:00
border-radius: 15px;
2024-08-22 22:12:36 +08:00
text-align: center;
padding: 20px;
}
.card {
width: 300px;
border-radius: 15px;
padding: 20px;
margin-bottom: 20px;
transition: transform 0.3s ease-in-out;
word-wrap: break-word;
}
h1 {
2024-08-22 22:49:04 +08:00
font-size: 20px;
2024-08-22 22:12:36 +08:00
margin-bottom: 20px;
}
2024-08-22 22:49:04 +08:00
#title-icon {
2024-08-22 22:51:09 +08:00
width: 30px;
2024-08-22 22:49:04 +08:00
vertical-align: bottom;
margin-right: 8px;
}
2024-08-22 23:10:38 +08:00
#thank-you {
font-size: 16px;
line-height: 1.5em;
margin-bottom: 20px;
color: rgb(197, 41, 2);
2024-08-22 23:10:38 +08:00
}
2024-08-22 22:12:36 +08:00
.donation-card {
text-align: center;
}
.select-wrapper {
display: flex;
align-items: center;
margin-bottom: 20px;
}
select {
padding: 8px;
border-radius: 10px;
border: 1px solid #ddd;
font-size: 16px;
flex: 1;
}
#icon-wrapper {
margin-left: 10px;
}
#blockchain-icon {
width: 30px;
height: 30px;
}
2024-08-22 22:49:04 +08:00
#qr-code {
2024-08-22 22:12:36 +08:00
width: 150px;
}
#address {
2024-08-22 22:49:04 +08:00
font-family: consolas;
2024-08-22 22:12:36 +08:00
font-size: 14px;
border-radius: 10px;
margin-top: 0;
2024-08-22 22:12:36 +08:00
word-break: break-all;
}
button {
2024-08-22 22:51:09 +08:00
background-color: #4caf50;
2024-08-22 22:12:36 +08:00
color: white;
padding: 10px 20px;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
}
2024-08-22 22:49:04 +08:00
#copyIcon {
width: 16px;
vertical-align: middle;
margin-right: 8px;
}
2024-08-22 22:12:36 +08:00
.language-list {
display: flex;
justify-content: center;
margin: 20px 0;
list-style: none;
padding: 0;
}
.language-list li {
margin: 0 10px;
cursor: pointer;
font-size: 16px;
color: #333;
transition: color 0.3s ease;
}
.language-list li:hover {
2024-08-22 22:51:09 +08:00
color: #4caf50;
2024-08-22 22:12:36 +08:00
}
.social-media {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.social-media a {
margin: 0 10px;
transition: transform 0.3s ease;
}
.social-media a:hover {
transform: scale(1.1);
}
.social-icon {
width: 30px;
}
footer {
font-size: 14px;
font-weight: normal;
2024-08-22 22:12:36 +08:00
color: #777;
}