Files
ClassContent/历届学生/fontendsix/项目练习/上课项目/dialog/css/dialog.css
2024-09-27 02:06:13 +08:00

55 lines
1009 B
CSS

.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;
}