website/public/app.css

58 lines
691 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 {
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;
}