Browse Source

添加窗口提示样式

pull/12/head
Zisbusy 4 years ago
committed by GitHub
parent
commit
61446b5e88
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 56 additions and 0 deletions
  1. +56
    -0
      Akina/css/style.css

+ 56
- 0
Akina/css/style.css View File

@ -5054,3 +5054,59 @@ pre[class*="language-"] {
.token.inserted {
color: green;
}
/*窗口提示样式*/
.fytx_alert_background {
width:100%;
height:100%;
background:rgba(0,0,0,.3);
position:fixed;
top:0;
left:0;
z-index:999999;
display: -webkit-flex; /* Safari */
display: flex;
align-items: center;
justify-content: center;
}
.fytx_alert_background .fytx_alert_box {
width:452px;
height:auto;
padding:0 15px 20px;
margin: 0 15px;
box-sizing:border-box;
background:#fff;
border-radius:8px;
}
.fytx_alert_background .fytx_alert_title {
width:100%;
height:45px;
border-bottom:1px dashed #d9d9d9;
line-height:45px;
text-align:center
}
.fytx_alert_background .fytx_alert_message {
width:100%;
height:auto;
overflow:hidden;
padding:25px 40px 35px;
text-align:center;
box-sizing:border-box;
line-height:28px
}
.fytx_alert_background .fytx_alert_btn {
display:block;
width:100px;
height:34px;
line-height:34px;
background-color:#A0DAD0;
cursor:pointer;
font-size:14px;
color:#fff;
border-radius:4px;
border:1px solid transparent;
margin:0 auto;
text-align:center
}
.fytx_alert_background .fytx_alert_btn:hover{
background-color: #DDE6EA;
}

Loading…
Cancel
Save