David Taylor d88ee33eb6
DEV: Introduce stylelint (#29852)
Stylelint is a css linter: https://stylelint.io/

As part of this change we have added two javascript scripts:

```
pnpm lint:css
pnpm lint:css:fix
```

Look at `.vscode/settings.json.sample` and `.vscode/extensions.json` for
configuration in VSCode.

---------

Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
2025-01-20 15:27:42 +00:00

65 lines
1014 B
SCSS

// Page not found styles
.not-found-container {
background: var(--d-content-background);
}
.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 (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 (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 (width <= 600px) {
&:nth-of-type(n + 6) {
display: none;
}
}
a:not(.badge-category__wrapper) {
flex-basis: 100%;
}
}
.page-not-found-search {
label {
color: var(--primary);
font-size: var(--font-up-3);
margin-bottom: 0.5em;
}
}