website/public/app.css
Max Richter 613ab7aef9
All checks were successful
Deploy to SFTP Server / build (push) Successful in 23m37s
fix: some astro type errors
2024-04-06 18:23:39 +02:00

68 lines
811 B
CSS

p {
font-size: 16px;
}
h1,
h2,
h3 {
color: var(--text-light);
font-family: 'Roboto', sans-serif;
}
article>h2 {
font-size: 24px;
margin-top: 20px;
}
article>h3 {
font-size: 20px;
margin-top: 16px;
}
article>p>a,
article a,
.top-info>.links a {
color: var(--fill) !important;
}
.dark .noise::before {
opacity: 1;
}
.noise::before {
opacity: 0.3;
content: "";
position: absolute;
height: 100%;
width: 100%;
background: url(/images/noise.webp);
background-size: 200px;
pointer-events: none;
/* opacity: 0.3; */
}
img {
max-width: 100%;
height: auto;
}
video {
border-radius: 10px;
}
.center {
display: flex;
justify-content: center;
align-items: center;
}
.astro-code {
padding: 20px;
border-radius: 10px;
}
article iframe {
border-radius: 10px;
}