25 lines
433 B
Plaintext
25 lines
433 B
Plaintext
|
|
.background {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #facc15;
|
|
}
|
|
/* 在这里添加任何自定义的样式 */
|
|
.container {
|
|
padding: 16px;
|
|
}
|
|
button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
/* 调整字体大小以适应卡片 */
|
|
font-size: 14px;
|
|
text-align: center;
|
|
/* 使按钮的文字不换行 */
|
|
white-space: nowrap;
|
|
}
|