liquidex
e201ea7058
- treehouse/new is now a regular page, not a special template - most of the code related to the `new` badge in page:index has been removed - you're meant to discern between pages you've read vs ones you haven't by looking at the colors of the links (blue vs purple)
34 lines
653 B
CSS
34 lines
653 B
CSS
.tree .branch-container {
|
|
&:has(th-bc > h3) > th-bb {
|
|
opacity: 100%;
|
|
|
|
& .branch-date {
|
|
display: block !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.tree .branch-container {
|
|
&:has(th-bc > h3) {
|
|
flex-direction: column;
|
|
padding-left: 1rem;
|
|
padding-top: 0.25rem;
|
|
padding-bottom: 0.25rem;
|
|
|
|
& > th-bp {
|
|
display: none;
|
|
}
|
|
|
|
& > th-bc > h3 {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
& > th-bb {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|