discourse/app/assets/stylesheets/common/base/not-found.scss
Jarek Radosz 4170b9bb58
DEV: Use more css vars (#18561)
Followup to #18518

This time it's mostly line-height vars and a couple of other uncommon vars.
2022-10-12 16:05:42 +02:00

52 lines
812 B
SCSS

// Page not found styles
.page-not-found {
margin: 0 0 40px 0;
h1.title {
font-size: var(--font-up-5);
line-height: var(--line-height-medium);
}
&-search {
margin-top: 20px;
}
}
.page-not-found-topics {
display: flex;
@media screen and (max-width: 600px) {
flex-wrap: wrap;
}
}
.popular-topics,
.recent-topics {
box-sizing: border-box;
width: 50%;
max-width: 400px;
margin-bottom: 40px;
padding-right: 20px;
@media screen and (max-width: 600px) {
width: 100%;
}
h2 {
margin-bottom: 10px;
}
}
.not-found-topic {
display: flex;
flex-wrap: wrap;
align-items: baseline;
margin-bottom: 15px;
@media screen and (max-width: 600px) {
&:nth-of-type(n + 6) {
display: none;
}
}
a:not(.badge-wrapper) {
flex-basis: 100%;
}
}