first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
body,
html,
h2,
h3,
h4,
h5,
h6,
h6,
p {
margin: 0;
}

View File

@@ -0,0 +1,55 @@
.bmy_dialog {
position: fixed;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
}
.bmy_dialog_content {
background: #fff;
font-size: 16px;
border-radius: 16px;
margin-top: -5%;
}
.bmy_dialog_title {
padding-top: 26px;
font-weight: 500;
line-height: 24px;
text-align: center;
}
.bmy_dialog_message {
color: #646566;
padding: 26px 24px;
padding-top: 8px;
text-align: center;
word-wrap: break-word;
max-height: 60vh;
overflow-y: scroll;
}
.bmy_dialog_button{
display: flex;
align-items: center;
height: 48px;
}
.bmy_dialog_cancel {
border-bottom-left-radius: 16px;
}
.bmy_dialog_confirm {
border-bottom-right-radius: 16px;
}
.button {
flex: 1;
height: 100%;
text-align: center;
line-height: 48px;
user-select: none;
}
.button:active {
background: #e6e6e6;
}