65 lines
1.0 KiB
Plaintext
65 lines
1.0 KiB
Plaintext
.pause-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.85);
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
z-index: 1500;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
pointer-events: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.pause-mask.show {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.pause-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
transform: translateY(20rpx);
|
|
opacity: 0;
|
|
transition: all 0.3s ease;
|
|
color: #fff;
|
|
}
|
|
|
|
.pause-mask.show .pause-content {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
.pause-icon {
|
|
/* width: 120rpx;
|
|
height: 120rpx; */
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.pause-title {
|
|
font-size: 40rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.timer-text {
|
|
font-size: 48rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 20rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
.tip-text {
|
|
font-size: 28rpx;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
} |