mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-22 21:08:12 +08:00
62 lines
879 B
CSS
62 lines
879 B
CSS
.map-ui {
|
|
height: 100%;
|
|
margin-left: 35px;
|
|
}
|
|
|
|
@media screen, (max-width: 630px) {
|
|
.map-ui {
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
.map-ui ul {
|
|
list-style: none;
|
|
color: #006400;
|
|
}
|
|
|
|
.map-title {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-top: 10px;
|
|
padding-bottom: 20px;
|
|
border: none;
|
|
border-bottom: 1px solid #e2e2e2;
|
|
background-color: transparent;
|
|
width: 100%;
|
|
}
|
|
|
|
.map-title > h4 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.map-title-completed {
|
|
margin-left: auto;
|
|
width: 100px;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.map-title > svg {
|
|
width: 14px;
|
|
margin-right: 5px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
li.open > .map-title svg:first-child {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.map-challenge-title {
|
|
margin-bottom: 0.25rem;
|
|
max-width: 28rem;
|
|
}
|
|
|
|
.night .map-challenge-title a,
|
|
.night .map-title h4,
|
|
.night .map-title-completed {
|
|
color: #67d269;
|
|
}
|
|
|
|
.map-challenge-title-completed {
|
|
opacity: 0.5;
|
|
}
|