25 lines
419 B
CSS
25 lines
419 B
CSS
.mode-real-info {
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 70px;
|
|
padding: 10px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.mode-real-info .dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background-color: #ff3333;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.mode-real-info .info-text {
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|