43 lines
724 B
CSS
43 lines
724 B
CSS
/* coordinates-display */
|
|
|
|
#coordinates-display {
|
|
top: 20px;
|
|
right: 20px;
|
|
border-radius: 18px;
|
|
padding: 10px 15px;
|
|
z-index: 10;
|
|
font-size: 0.9rem;
|
|
min-width: 180px;
|
|
}
|
|
|
|
#coordinates-display .coord-item {
|
|
margin-bottom: 5px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#coordinates-display .coord-label {
|
|
color: #aaa;
|
|
}
|
|
|
|
#coordinates-display .coord-value {
|
|
color: #4db8ff;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#coordinates-display #zoom-level {
|
|
margin-top: 5px;
|
|
color: #ffff44;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
#coordinates-display .mouse-coords {
|
|
font-size: 0.8rem;
|
|
color: #aaa;
|
|
margin-top: 5px;
|
|
padding-top: 5px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|