52 lines
750 B
CSS
52 lines
750 B
CSS
/* earth-stats */
|
|
|
|
#earth-stats {
|
|
bottom: 20px;
|
|
right: 20px;
|
|
border-radius: 18px;
|
|
padding: 15px;
|
|
width: 250px;
|
|
z-index: 10;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#earth-stats .stats-item {
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#earth-stats .stats-label {
|
|
color: #aaa;
|
|
}
|
|
|
|
#earth-stats .stats-value {
|
|
color: #4db8ff;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#satellite-info {
|
|
bottom: 20px;
|
|
right: 290px;
|
|
border-radius: 18px;
|
|
padding: 15px;
|
|
width: 220px;
|
|
z-index: 10;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
#satellite-info .stats-item {
|
|
margin-bottom: 6px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#satellite-info .stats-label {
|
|
color: #aaa;
|
|
}
|
|
|
|
#satellite-info .stats-value {
|
|
color: #00e5ff;
|
|
font-weight: 500;
|
|
}
|