geoproject-app/public/assets/css/stylesheet.css
isUnknown 0b511389da style: update popup width and document styles
- Change popup width from 800px to 71rem for better scaling
- Add DM Sans as default body font
- Set h1 font-size to 3rem
- Reduce paragraph bottom margin from 10mm to 5mm
- Add link styles (purple color, no underline)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-10 13:22:12 +01:00

49 lines
504 B
CSS

@page {
size: A4;
margin: 20mm 15mm 26mm 15mm;
background: rgba(255, 255, 255, 1);
}
@page {
@bottom-center {
content: string(title);
}
}
body {
font-family: "DM Sans", sans-serif;
}
h1 {
font-size: 3rem;
}
h2 {
break-before: page;
}
.chapter > h2 {
string-set: title content(text);
}
#chapter-2 {
font-size: 2rem;
}
p {
font-size: 1rem;
margin: 0mm 0mm 5mm 0mm;
}
li p {
margin-bottom: 0;
}
img {
width: 100%;
}
a {
color: #7136ff;
text-decoration: none;
}