website/public/app.css

67 lines
791 B
CSS
Raw Normal View History

2024-03-27 01:51:42 +01:00
p {
2024-03-28 18:30:52 +01:00
font-size: 16px;
2024-03-27 01:51:42 +01:00
}
2024-03-28 18:30:52 +01:00
h1,
2024-04-03 14:27:48 +02:00
h2,
h3 {
color: var(--text-light);
2024-03-28 18:30:52 +01:00
font-family: 'Roboto', sans-serif;
2024-03-27 01:51:42 +01:00
}
2024-04-03 16:18:30 +02:00
article>h2 {
2024-04-03 14:27:48 +02:00
font-size: 24px;
margin-top: 20px;
}
2024-04-03 16:18:30 +02:00
article>h3 {
2024-04-03 14:27:48 +02:00
font-size: 20px;
margin-top: 16px;
}
2024-04-03 16:18:30 +02:00
article>p>a,
article a {
color: var(--fill) !important;
}
2024-04-03 14:27:48 +02:00
.dark .noise::before {
opacity: 1;
2024-03-26 16:36:18 +01:00
}
2024-03-27 01:51:42 +01:00
2024-03-28 18:30:52 +01:00
.noise::before {
2024-04-03 14:27:48 +02:00
opacity: 0.3;
2024-03-28 18:30:52 +01:00
content: "";
position: absolute;
height: 100%;
width: 100%;
2024-04-03 19:38:02 +02:00
background: url(/images/noise.webp);
2024-03-28 18:30:52 +01:00
background-size: 200px;
pointer-events: none;
/* opacity: 0.3; */
}
2024-03-27 01:51:42 +01:00
img {
max-width: 100%;
height: auto;
}
2024-04-03 14:27:48 +02:00
video {
border-radius: 10px;
}
2024-03-27 01:51:42 +01:00
.center {
display: flex;
justify-content: center;
align-items: center;
}
2024-04-03 21:09:50 +02:00
.astro-code {
padding: 20px;
border-radius: 10px;
}
article iframe {
border-radius: 10px;
}