2018-06-08 17:49:31 +08:00
|
|
|
// Page not found styles
|
2017-11-25 01:41:31 +08:00
|
|
|
|
|
|
|
.page-not-found {
|
|
|
|
margin: 0 0 40px 0;
|
2019-10-08 19:15:08 +08:00
|
|
|
|
|
|
|
h1.title {
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-up-5);
|
2022-10-12 22:05:42 +08:00
|
|
|
line-height: var(--line-height-medium);
|
2019-10-08 19:15:08 +08:00
|
|
|
}
|
|
|
|
|
2017-11-25 01:41:31 +08:00
|
|
|
&-search {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-not-found-topics {
|
|
|
|
display: flex;
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.popular-topics,
|
|
|
|
.recent-topics {
|
2017-11-25 01:41:31 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 50%;
|
|
|
|
max-width: 400px;
|
2018-06-08 17:49:31 +08:00
|
|
|
margin-bottom: 40px;
|
2017-11-25 01:41:31 +08:00
|
|
|
padding-right: 20px;
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
h2 {
|
2018-06-08 17:49:31 +08:00
|
|
|
margin-bottom: 10px;
|
2017-11-25 01:41:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.not-found-topic {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: baseline;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
@media screen and (max-width: 600px) {
|
2018-06-08 17:49:31 +08:00
|
|
|
&:nth-of-type(n + 6) {
|
2017-11-25 01:41:31 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-01-18 02:42:39 +08:00
|
|
|
a:not(.badge-wrapper) {
|
2017-11-25 01:41:31 +08:00
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
}
|